Click or drag to resize

CreateMatrixSparseT(SparseCompressedRowMatrixStorageT) Method

Create a new sparse matrix straight from an initialized matrix storage instance. The storage is used directly without copying. Intended for advanced scenarios where you're working directly with storage for performance or interop reasons.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix<T> Sparse<T>(
	SparseCompressedRowMatrixStorage<T> storage
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

storage  SparseCompressedRowMatrixStorageT

[Missing <param name="storage"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.Sparse``1(Altaxo.Calc.LinearAlgebra.Storage.SparseCompressedRowMatrixStorage{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.Sparse``1(Altaxo.Calc.LinearAlgebra.Storage.SparseCompressedRowMatrixStorage{``0})"]

Return Value

MatrixT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.Sparse``1(Altaxo.Calc.LinearAlgebra.Storage.SparseCompressedRowMatrixStorage{``0})"]

See Also