|
Contents | Previous | Next | Subchapters |
| Syntax |
expression / expression |
| O-Matrix Mode | matrix division |
/ operator is mlmode is defined by
A / B = (B^T A^T)^T
where ^T denotes transpose and the \ operator
is as define in Linear Equations and Least Squares.
mlmode
A = [1., 1.];
B = [1., 0.];
X = B / A
O-Matrix will reply
X = .5
which is the least squares solution of the equations
X * A = B