FsAlg


Ops

Linear algebra operations module (automatically opened)

Functions and values

Function or valueDescription
matrix m
Signature: m:seq<seq<^T>> -> Matrix<^T>
Type parameters: ^T

Converts 2d array m into a Matrix

matrixBy f m
Signature: f:(^T -> ^U) -> m:seq<seq<^T>> -> Matrix<^U>
Type parameters: ^T, ^U

Converts 2d array m into a Matrix, first passing the elements through a conversion function f

vector v
Signature: v:seq<^T> -> Vector<^T>
Type parameters: ^T

Converts array, list, or sequence v into a Vector

vectorBy f v
Signature: f:(^T -> ^U) -> v:seq<^T> -> Vector<^U>
Type parameters: ^T, ^U

Converts array, list, or sequence v into a Vector, first passing the elements through a conversion function f