Click or drag to resize

MatrixMathROMatrixFromRowMajorLinearArrayT Class

Wraps a linear array to a read-only matrix. The array is column oriented, i.e. consecutive elements belong mostly to one column. This is the convention used for LAPACK routines.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebraMatrixMathROMatrixFromRowMajorLinearArrayT
    Altaxo.Calc.LinearAlgebraMatrixMathMatrixFromRowMajorLinearArrayT

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

Type Parameters

T

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

The MatrixMathROMatrixFromRowMajorLinearArrayT type exposes the following members.

Constructors
 NameDescription
Public methodMatrixMathROMatrixFromRowMajorLinearArrayT(MatrixWrapperStructForRowMajorOrderLinearArrayT) Initializes a new instance of the MatrixMathROMatrixFromRowMajorLinearArrayT class.
Public methodMatrixMathROMatrixFromRowMajorLinearArrayT(T, Int32) Initializes a new instance of the MatrixMathROMatrixFromColumnMajorLinearArrayT class.
Top
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
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Fields
 NameDescription
Protected field_array 
Protected field_columns 
Protected field_rows 
Top
See Also