Click or drag to resize

IMatrixT Interface

IMatrix represents the simplest form of a 2D matrix, which is readable and writeable.

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

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Altaxo.Calc.LinearAlgebra.IMatrix`1"]

The IMatrixT type exposes the following members.

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