From: Tunc S. <si...@EE...> - 2001-10-01 22:40:18
|
Well, the [ ... ] thing is just a macro and does not use any foreign functions so it will work. However, do not understand why dcopy is not yet (or no longer) loaded. How exactly did you install matlisp? Does it work if you just do (load "start.lisp") then the stuff below? On Mon, 1 Oct 2001, marciot wrote: > >All these problems were fixed, however a new release was not > >made. You may however, use CVS to checkout the current source files > >directly from SourceForge. These sources will work with your > >Allegro system. > > Excellent. This much seems to work. I was able to download, compile > and install Matlisp. I am now able to create matrices from the > top-level: > > CL-USER(2): (use-package "MATLISP") > T > CL-USER(3): [1 2] > #<REAL-MATRIX 1 x 2 > 1.0000 2.0000 > > CL-USER(4): (setf a [1 2;3 4]) > #<REAL-MATRIX 2 x 2 > 1.0000 2.0000 > 3.0000 4.0000 > > CL-USER(5): > > But any non-trivial function returns an error: > > CL-USER(6): (m+ a a) > Error: Attempt to call #("dcopy__" 4269187168 0 2 4269187168) for which > the definition has not yet been (or is no longer) loaded. > [condition type: SIMPLE-ERROR] > > Restart actions (select using :continue): > 0: Return to Top Level (an "abort" restart) > 1: Abort #<PROCESS Initial Lisp Listener> > [1] CL-USER(7): > > Thank you for the help so far. Any ideas as to what might causing this latter > problem? > > Thank you, > > Marcio Luis Teixeira > > > _______________________________________________ > Matlisp-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matlisp-users > |