On Wed, 30 Jul 2008, Sven Schreiber wrote:
One more thing...:
In a script, the line
matrix uvec = transp(umat[1,])
works, but
matrix uvec = umat[1,]'
doesn't. Is this intended? I thought that should be equivalent.
It wasn't a deliberate decision to make that expression not work,
but enabling it might be quite fiddly.
This works:
matrix uvec = (umat[1,])'
Allin