Mat2F
Public / Methods
Mul
3 overloads
Multiplies this matrix (left-side) with the given one (right-side): result = this * m
.
Multiplies this matrix (left-side) with the given vector (right-side): result = this * v
.
Multiplies this matrix (left-side) with the given vector (right-side): result = this * v
.
ToArray
Copies matrix elements to the given array.
The method uses the following indexing scheme to write values to values in:
values[offset + (row - 1) * strideRow + (col - 1) * strideCol := matrix[row, col];
where row
and col
depict the matrix row and column number (starting at 1
).
ToString
2 overloads
Returns the string representation of this matrix.
The Mat2F.ToString1 method uses FormatFlags.Precision7.
- See also