Only a few list's operations are availble in Maxima (or may be I'm wrong
here). E.g. there are no such operators like "intersection", "flatten"
"partition". Even some of them, like "intersection" are embeded in CL.
So what is right way to transfer it from lisp level to maxima lang.
Say I wrote
(DEFMFUN $INTERSECT (L1 L2) (INTERSECTION L1 L2) )
and like to have output in Maxima form. If I just apply this one I have the
following
(C8) intersect([i,j],[k,j]);
(D8) (J)
Instead square bracets.
Thanks a lot
Valerij