Constructs a new matrix with the specified
number of rows and columns whose elements are all equal to the specified value.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public static DenseMatrix Create(
int rowCount,
int columnCount,
double value
)
Public Shared Function Create (
rowCount As Integer,
columnCount As Integer,
value As Double
) As DenseMatrix
public:
static DenseMatrix^ Create(
int rowCount,
int columnCount,
double value
)
static member Create :
rowCount : int *
columnCount : int *
value : float -> DenseMatrix
Parameters
- rowCount
- Type: SystemInt32
The number of rows in the new
matrix. - columnCount
- Type: SystemInt32
The number of columns in the new
matrix. - value
- Type: SystemDouble
The value of each element.
Return Value
Type:
DenseMatrixA
DenseMatrix.
Numerical Libraries
Supported in: 5.x, 4.x
Reference