AngouriMath
Matrix
Method with 2 overloads
Matrix(AngouriMath.Entity[0:,0:])
Summary
Creates an instance of Matrix that is a matrix.Parameter "values"
A two-dimensional array of valuesReturns
A two-dimensional Matrix which is a matrixMatrix(System.Int32,System.Int32,AngouriMath.Entity[])
Summary
Creates an instance of Matrix that is a matrix.
Usage example:
var t = MathS.Matrix(5, 3,
-
10, 11, 12,
20, 21, 22,
30, 31, 32,
40, 41, 42,
50, 51, 52);
creates 5×3 matrix with the appropriate elements
Parameter "rows"
Number of rows (first axis)Parameter "columns"
Number of columns (second axis)Parameter "values"
Array of values of the matrix so that its length is equal to
the product ofrows andcolumns Returns
A two-dimensional Matrix which is a matrix
Angouri © 2019-2023 · Project's repo · Site's repo · Octicons · Transparency · 1534 pages online