MatrixMathDenseOfMatrixT Method |
Creates a dense matrix from the given matrix x.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static Matrix<T> DenseOfMatrix<T>(
IROMatrix<T> x
)
where T : struct, new(), IEquatable<T>, IFormattable
Parameters
- x IROMatrixT
- The input matrix.
Type Parameters
- T
- The type of the matrix elements.
Return Value
MatrixTA dense matrix with the same values as the input matrix.
See Also