 | MatrixD Constructor (Int32, Int32,Double[], MatrixOrder) |
Initializes a new instance of the
MatrixD class.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntaxpublic MatrixD(
int numberOfRows,
int numberOfColumns,
double[] elements,
MatrixOrder order
)
Public Sub New (
numberOfRows As Integer,
numberOfColumns As Integer,
elements As Double(),
order As MatrixOrder
)
public:
MatrixD(
int numberOfRows,
int numberOfColumns,
array<double>^ elements,
MatrixOrder order
)
new :
numberOfRows : int *
numberOfColumns : int *
elements : float[] *
order : MatrixOrder -> MatrixD
Parameters
- numberOfRows
- Type: System.Int32
The number of rows m. - numberOfColumns
- Type: System.Int32
The number of columns n. - elements
- Type:System.Double[]
The array with the initial values for the matrix elements. - order
- Type: DigitalRune.Mathematics.Algebra.MatrixOrder
The order of the matrix elements in elements.
Exceptions
See Also