Click or drag to resize

MatrixMathDenseOfMatrixT Method

Creates a dense matrix from the given matrix x.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public 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

MatrixT
A dense matrix with the same values as the input matrix.
See Also