Click or drag to resize

IROBandMatrixT Interface

IROBandMatrix represents a read-only band 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 IROBandMatrix<T> : IROMatrix<T>
where T : struct, new()

Type Parameters

T
The value type stored in the matrix.

The IROBandMatrixT 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 propertyLowerBandwidth Gets the lower bandwidth of the matrix.
Public propertyRowCountThe number of rows of the matrix.
(Inherited from IROMatrixT)
Public propertyUpperBandwidth Gets the upper bandwidth of the matrix.
Top
Methods
 NameDescription
Public methodEnumerateElementsIndexed Enumerates the matrix elements with their indices.
Top
See Also