Click or drag to resize

IROMatrixT Interface

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

Type Parameters

T
The value type stored in the matrix.

The IROMatrixT type exposes the following members.

Properties
 NameDescription
Public propertyColumnCountThe number of columns of the matrix.
Public propertyItemGets an element of the matrix at (row, col).
Public propertyRowCountThe number of rows of the matrix.
Top
Extension Methods
 NameDescription
Public Extension MethodCopyColumnT Copies one column of a source matrix into a destination matrix to a given row and column offset.
(Defined by MatrixMath)
Public Extension MethodMapIndexedT, T1 Applies the specified function to each element of the matrix, providing the element's row and column indices as well as an additional parameter.
(Defined by MatrixMath)
Top
See Also