|
From: marciot <ma...@ho...> - 2001-10-01 22:36:41
|
>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
|