DenseMatrix Constructor (Double[], Int32) |
Initializes a new instance from a one-dimensional packed array.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic DenseMatrix(
double[] elements,
int rowDimension
)
Public Sub New (
elements As Double(),
rowDimension As Integer
)
public:
DenseMatrix(
array<double>^ elements,
int rowDimension
)
new :
elements : float[] *
rowDimension : int -> DenseMatrix
Parameters
- elements
- Type:System.Double[]
A one-dimensional array of doubles containing the values of all of the elements. - rowDimension
- Type: System.Int32
The number of rows in the matrix.
Exceptions
See Also