| |||||||||||||
| |||||||||||||
Description | |||||||||||||
(Very provisional) operators for frequent operations. | |||||||||||||
Synopsis | |||||||||||||
| |||||||||||||
Documentation | |||||||||||||
| |||||||||||||
matrix product | |||||||||||||
| |||||||||||||
u <.> v = dot u v | |||||||||||||
| |||||||||||||
least squares solution of a linear system, similar to the \ operator of Matlab/Octave (based on linearSolveSVD). | |||||||||||||
| |||||||||||||
x .* a = scale x a | |||||||||||||
| |||||||||||||
a */ x = scale (recip x) a | |||||||||||||
| |||||||||||||
Horizontal concatenation of matrices and vectors: > (ident 3 <-> 3 * ident 3) <|> fromList [1..6.0] (6><4) [ 1.0, 0.0, 0.0, 1.0 , 0.0, 1.0, 0.0, 2.0 , 0.0, 0.0, 1.0, 3.0 , 3.0, 0.0, 0.0, 4.0 , 0.0, 3.0, 0.0, 5.0 , 0.0, 0.0, 3.0, 6.0 ] | |||||||||||||
| |||||||||||||
Vertical concatenation of matrices and vectors. | |||||||||||||
Produced by Haddock version 2.4.2 |