Fwd: Re(2): [Maxima] Vector product



I already tried the following:

(C1) load(vect);
(D1)  C:/Programmer/Maxima-5.9.0/share/maxima/5.9.0/share/vector/vect.mac
(C2) A:matrix([1],[2],[3]);
				     [ 1 ]
				     [	 ]
(D2) 				     [ 2 ]
				     [	 ]
				     [ 3 ]
(C3) B:matrix([1],[-2],[-1]);
				    [  1  ]
				    [	  ]
(D3) 				    [ - 2 ]
				    [	  ]
				    [ - 1 ]
(C4) A.B;
(D4) 				      - 6


As you see, A.B still gives the scalar product, not the vector product -
which in the above example should be (4,4,-4).

Yours,
Poul Riis
Denmark