Module linalg

Source
Expand description

Perform linear algebra operations involving Arrays of f64, Dual and Dual2.

Functionsยง

dfmul21_
Matrix multiplication of a 2d-array with a 1d-array.
dfmul22_
Matrix multiplication of two 2d-arrays.
dmul11_
Inner product between two 1d-arrays.
dmul21_
Matrix multiplication between a 2d-array and a 1d-array.
dmul22_
Matrix multiplication between two 2d-arrays.
douter11_
Outer product of two 1d-arrays containing generic objects.
dsolve
Solve a linear system of equations, ax = b, using Gaussian elimination and partial pivoting.
fdmul11_
Inner product of two 1d-arrays.
fdmul21_
Matrix multiplication of a 2d-array with a 1d-array.
fdmul22_
Matrix multiplication of two 2d-arrays.
fdsolve
Solve a linear system, ax = b, using Gaussian elimination and partial pivoting.
fouter11_
Outer product of two 1d-arrays containing f64s.