Getting lapack to load in wxmaxima



On 9/7/07, Richard Fateman <fateman at cs.berkeley.edu> wrote:

> (%i6) load("lapack/lapack.mac");Could not find `lapack/lapack.mac' using
> paths in file_search_maxima,file_search_lisp (combined values: [C:/Documents

Try appending the lapack directory to the search list e.g.
file_search_lisp : cons ("c:/foo/bar/baz/lapack/###.lisp", file_search_lisp);
file_search_maxima : cons ("c:/foo/bar/baz/lapack/###.mac", file_search_maxima);
and then: load(lapack);

HTH

Robert