* Create a Matrix. The function creates a new math.type.Matrix object * from an Array. A Matrix has utility functions to manipulate the data * in the matrix, like getting the size and getting or setting values in * the matrix. Supported storage formats are 'dense' and 'sparse'.
(
this: MathJsChain<MathCollection>,
format?: 'sparse' | 'dense',
dataType?: string
)
| 5025 | * the matrix. Supported storage formats are 'dense' and 'sparse'. |
| 5026 | */ |
| 5027 | matrix( |
| 5028 | this: MathJsChain<MathCollection>, |
| 5029 | format?: 'sparse' | 'dense', |
| 5030 | dataType?: string |
no outgoing calls