- The Common Lisp Cookbook - https://lispcookbook.github.io/cl-cookbook/arrays.html
- Linear Algebra library (lla) - https://github.com/tpapp/lla
I tried to install Linear Algebra libary (lla) using quicklisp in Emacs' SLIME repl, but it didn't work. The error message is:
CL-USER> (ql:quickload :lla)
...
Unable to load foreign library (LIBBLAS.DLL-68919).
FFI:OPEN-FOREIGN-LIBRARY: Cannot open library "libblas.dll"
[Condition of type CFFI:LOAD-FOREIGN-LIBRARY-ERROR]
I'm using ANSI Common Lisp (CLISP) in Emacs 27.1 SLIME-mode (Windows 64 bits operating system). How can I install "lla" library properly?