Hi,
I have a valid program which breaks if I do a load("vect").
Does something in vect redefine the . operator to work differently?
I am using wxMaxima 0.7.0a on WinXP.
Thanks,
-Frank
---
kill(all);
/* comment this line out, and it's fine */
/* otherwise the . operator is messed up? */
load("vect")$
P2:matrix([a,b,c]); /* 1x3 */
R2:matrix([1,0,0],[0,1,0],[0,0,1]); /* 3x3 */
S2:matrix([d,e,f]); /* 1x3 */
P2+S2.R2;