Back to Finite Element (MFEM)
mfem.linalg.DenseMatrix.create
Creates a new dense matrix of specified dimensions.
Syntax
mfem.linalg.DenseMatrix.create(height, width)
Description
Creates a new dense matrix of specified dimensions. Elements are uninitialized.
Parameters
| Name | Description |
|---|---|
| height | - Number of rows |
| width | - Number of columns |
Returns
Promise<DenseMatrix>