Namespace: FSharpPlus.Data
Assembly: FSharpPlus.dll
Function or value | Description |
You can also use `Matrix.Col
|
|
|
|
|
|
|
You can also use `Matrix.Col
|
Full Usage:
create definition
Parameters:
^('a*..*'a)*..*('a*..*'a)
Returns: Matrix<'a, ^m, ^n>
|
|
|
|
|
|
Full Usage:
get row column mat
Parameters:
^iwhen^i<^m
column : ^jwhen^j<^n
mat : Matrix<'a, ^m, ^n>
Returns: 'a
|
You can also use `Matrix.Get.Invoke mat`.
|
|
|
|
|
|
|
|
|
|
You can also use `Matrix.Init
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
You can also use `Matrix.Replicate
|
You can also use `Matrix.Row.AsMatrix mtx`.
|
|
|
|
|
|
|
You can also use `Matrix.Row.AsVector mtx`.
|
|
You can also use `Matrix.Slice.Invoke mat`.
|
|
You can also use `Matrix.SliceCol.Invoke mat`.
|
|
You can also use `Matrix.SliceRow.Invoke mat`.
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
tryOfArray2D row column items
Parameters:
^m
column : ^n
items : 'a[,]
Returns: Matrix<'a, ^m, ^n> option
|
Tries to create a matrix of given dimension. If the dimension does not match, returns `None`. Otherwise returns the matrix with `Some`. You can also use `Matrix.TryCreate.OfArray2D`.
|
Full Usage:
tryOfJaggedSeq row column items
Parameters:
^m
column : ^n
items : seq<'a>
Returns: Matrix<'b, ^m, ^n> option
|
Tries to create a matrix of given dimension. If the dimension does not match, returns `None`. Otherwise returns the matrix with `Some`. You can also use `Matrix.TryCreate.OfJaggedSeq`.
|
Full Usage:
unsafeCreate _row _column items
Parameters:
'm
_column : 'n
items : 'a[,]
Returns: Matrix<'a, 'm, 'n>
|
|
|
|
|
|
|
|
|
You can also use `Matrix.ZeroCreate
|