I notice that, in Compute, one can define a 2D matrix,
for example, as [[a00,a01],[a10,a11]]. When a matrix
variable (say a) occurs in a compute statement, you can
access elements as (a.0).1, (a.1).1 etc. You can even do
vector operations like "(a.0) dot [1,0]". Has there
been any thought to implementing matrix multiplication?
Ideally "a dot [1,0]'" or "a.[1,0]'" should equal [a00,a10]'
(I'm using the prime (') to represent transpose operation as
in MatLab.)Richard
