Click or drag to resize

MatrixMathMatrixFromRowMajorLinearArrayT Class

Wraps a linear array to a read-write matrix. The array is row oriented, i.e. consecutive elements belong mostly to one row.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebraMatrixMathROMatrixFromRowMajorLinearArrayT
    Altaxo.Calc.LinearAlgebraMatrixMathMatrixFromRowMajorLinearArrayT

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

Type Parameters

T
The element type of the wrapped matrix.

The MatrixMathMatrixFromRowMajorLinearArrayT type exposes the following members.

Constructors
 NameDescription
Public methodMatrixMathMatrixFromRowMajorLinearArrayT(MatrixWrapperStructForRowMajorOrderLinearArrayT) Initializes a new instance of the MatrixMathMatrixFromColumnMajorLinearArrayT class.
Public methodMatrixMathMatrixFromRowMajorLinearArrayT(T, Int32) Initializes a new instance of the MatrixMathMatrixFromRowMajorLinearArrayT class.
Top
Properties
 NameDescription
Public propertyColumnCountThe number of columns of the matrix.
(Inherited from MatrixMathROMatrixFromRowMajorLinearArrayT)
Public propertyItemGet / sets an element of the matrix at (row, col).
Public propertyRowCountThe number of rows of the matrix.
(Inherited from MatrixMathROMatrixFromRowMajorLinearArrayT)
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 The wrapped one-dimensional array in row-major order.
(Inherited from MatrixMathROMatrixFromRowMajorLinearArrayT)
Protected field_columns The number of columns in the wrapped matrix.
(Inherited from MatrixMathROMatrixFromRowMajorLinearArrayT)
Protected field_rows The number of rows in the wrapped matrix.
(Inherited from MatrixMathROMatrixFromRowMajorLinearArrayT)
Top
See Also