Click or drag to resize

IROSparseMatrixT Interface

IROSparseMatrix represents a read-only sparse matrix of values.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface IROSparseMatrix<T> : IROMatrix<T>
where T : struct, new()

Type Parameters

T
The value type stored in the matrix.

The IROSparseMatrixT type exposes the following members.

Properties
 NameDescription
Public propertyColumnCountThe number of columns of the matrix.
(Inherited from IROMatrixT)
Public propertyItemGets an element of the matrix at (row, col).
(Inherited from IROMatrixT)
Public propertyRowCountThe number of rows of the matrix.
(Inherited from IROMatrixT)
Top
See Also