Click or drag to resize

RODoubleMatrixInArray1DColumnMajorRepresentation Class

Wraps a linear array to a read-only matrix. The linear array is in column-major order, i.e. the first elements of the linear array belong to the first column of the matrix (i.e. the row values change more quickly). The index of the linear array is calculated as index = row + column*NumberOfRows. This representation is used for instance by LAPACK, Fortran, Julia, MATLAB, Octave, Scilab, GLSL and HLSL.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebraRODoubleMatrixInArray1DColumnMajorRepresentation
    Altaxo.Calc.LinearAlgebraDoubleMatrixInArray1DColumnMajorRepresentation

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class RODoubleMatrixInArray1DColumnMajorRepresentation : IROMatrix<double>

The RODoubleMatrixInArray1DColumnMajorRepresentation type exposes the following members.

Constructors
 NameDescription
Public methodRODoubleMatrixInArray1DColumnMajorRepresentation(Int32, Int32)Initializes a new instance of the RODoubleMatrixInArray1DColumnMajorRepresentation class
Public methodRODoubleMatrixInArray1DColumnMajorRepresentation(Double, Int32, Int32)Initializes a new instance of the RODoubleMatrixInArray1DColumnMajorRepresentation class
Top
Properties
 NameDescription
Public propertyColumnCount 
Public propertyItem 
Public propertyRowCount 
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
Extension Methods
 NameDescription
Public Extension MethodAny Determines whether any element of the provided matrix a fulfills the given predicate.
(Defined by MatrixMath)
Public Extension MethodCopyColumn Gets the column of a matrix copied into a vector.
(Defined by MatrixMath)
Public Extension MethodCopyColumn Gets the column of a matrix copied into a vector.
(Defined by MatrixMath)
Public Extension MethodCopyColumnDouble Copies one column of a source matrix into a destination matrix to a given row and column offset.
(Defined by MatrixMath)
Public Extension MethodCopyRow Gets the row of a matrix copied into a vector.
(Defined by MatrixMath)
Public Extension MethodCopyRow Gets the row of a matrix copied into a vector.
(Defined by MatrixMath)
Public Extension MethodMapIndexedDouble, T1
(Defined by MatrixMath)
Public Extension MethodMax Get the maximum value of all elements of the specified matrix a.
(Defined by MatrixMath)
Public Extension MethodMin Get the minimum value of all elements of the specified matrix a.
(Defined by MatrixMath)
Public Extension MethodNorm
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodSubMatrixT Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath)
Public Extension MethodTrace Get the trace of square matrix a, i.e. the sum of diagonal elements.
(Defined by MatrixMath)
Top
See Also