Hi, there is a disconnect here somehow:
<console>
? m = ones(4,3)
? div = {1, 0.2, 5}
? X = m / div
Ungültiges Argument # = invalid arg
? eval m/ div
0,23810
0,23810
0,23810
0,23810
</console>
Given that as per the doc X should solve X*div = m, and div has dim 1x3,
m has dim 4x3, X having dim 4x1 seems OK. But obviously the result is
wrong and it's clear that in linear algebra terms there is no solution.
So what is eval doing there?
thanks
sven