DenseMatrix Constructor (Int32, Int32, Double) |
Initializes a new instance with the specified row and column dimensions.
All elements of the matrix will be set to the provided value.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic DenseMatrix(
int rowDimension,
int columnDimension,
double elementValue
)
Public Sub New (
rowDimension As Integer,
columnDimension As Integer,
elementValue As Double
)
public:
DenseMatrix(
int rowDimension,
int columnDimension,
double elementValue
)
new :
rowDimension : int *
columnDimension : int *
elementValue : float -> DenseMatrix
Parameters
- rowDimension
- Type: System.Int32
The number of rows in the matrix. - columnDimension
- Type: System.Int32
The number of columns in the matrix. - elementValue
- Type: System.Double
The value that all elements in the matrix will be set to.
Exceptions
See Also