Click or drag to resize

Altaxo.Calc.LinearAlgebra Namespace

[Missing <summary> documentation for "N:Altaxo.Calc.LinearAlgebra"]

Classes
 ClassDescription
Public classBandDoubleMatrix 
Public classCreateMatrix 
Public classCreateVector 
Public classDataColumnWrapper 
Public classDataTableWrapper Wraps DataColumnCollections to matrices.
Public classDoubleBandMatrix Represents a band matrix in compact storage format (stored as a linear array).
Public classDoubleMatrixInArray1DColumnMajorRepresentation Wraps a linear array to a read-write 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.
Public classDoubleMatrixInArray1DRowMajorRepresentation Wraps a linear array to a read-write matrix. The array is in row-major order, i.e. the first elements of the linear array belong to the first row of the matrix (the column values change more quickly). The index of the linear array is calculated as index = column + row * NumberOfColumns. This representation is used for instance by C, C++, Mathematica, Pascal and Python.
Public classFastNonnegativeLeastSquares Implementation of an algorithm that finds a vector x with all elements xi>=0 which minimizes |X*x-y|.
Public classGaussianEliminationSolverProvides implementation of Gaussian elimination with partial pivoting
Public classGenericVector<T> Base class of the vector classes. Implements non-arithmetic stuff common to all vectors.
Public classIntegerVector Vector of integer elements.
Public classInvalidContentMatrixExceptionThe exception is thrown when a singular matrix is passed a method not expecting one.
Public classInvalidDimensionMatrixExceptionThe exception is thrown when a singular matrix is passed a method not expecting one.
Public classJaggedArrayMath This provides array math for a special case of matrices, so called jagged arrays.
Public classJaggedArrayMatrix JaggedArrayMatrix is a matrix implementation that is relatively easy to extend to the bottom, i.e. to append rows. It is horizontal oriented, i.e. the storage is as a number of horizontal vectors. Furthermore, as a compromise, it provides fully access to its underlying jagged array.
Public classLinearAlgebraExceptionRepresents errors that occur when using the dnA library.
Public classLinearlySpacedIntervalByEndCountStep Defines a linearly spaced closed interval defined by end, number of elements, and step size.
Public classLinearlySpacedIntervalByEndCountStep.SerializationSurrogate0 
Public classLinearlySpacedIntervalByStartCountStep Defines a linearly spaced closed interval defined by start, number of elements, and step size.
Public classLinearlySpacedIntervalByStartCountStep.SerializationSurrogate0 
Public classLinearlySpacedIntervalByStartEndCount Defines a linearly spaced closed interval defined by start, end, and number of elements.
Public classLinearlySpacedIntervalByStartEndCount.SerializationSurrogate0 
Public classLinearlySpacedIntervalByStartEndStep Defines a linearly spaced closed interval defined by start, end and step size.
Public classLinearlySpacedIntervalByStartEndStep.SerializationSurrogate0 
Public classMapackMatrixMatrix provides the fundamental operations of numerical linear algebra.
Public classMatrix<T> Defines the base class for Matrix classes.
Public classMatrixBuilder<T> Generic linear algebra type builder, for situations where a matrix or vector must be created in a generic way. Usage of generic builders should not be required in normal user code.
Public classMatrixExceptionRepresents errors that occur when using the matrix classes.
Public classMatrixExtensions 
Public classMatrixMath Class MatrixMath provides common static methods for matrix manipulation and arithmetic in tow dimensions.
Public classMatrixMath.LeftSpineJaggedArrayMatrix<T> BEMatrix is a matrix implementation that is relatively easy to extend to the botton, i.e. to append rows. It is horizontal oriented, i.e. the storage is as a number of horizontal vectors.
Public classMatrixMath.MatrixColumnROVector<T> Wrapper for a matrix column to a read-only vector.
Public classMatrixMath.MatrixColumnVector<T> Wrapper for a matrix row to a vector.
Public classMatrixMath.MatrixFromColumnMajorLinearArray<T> Wraps a linear array to a read-write matrix. The array is column oriented, i.e. consecutive elements belong mostly to one column. This is the convention used for LAPACK routines.
Public classMatrixMath.MatrixFromRowMajorLinearArray<T> Wraps a linear array to a read-write matrix. The array is row oriented, i.e. consecutive elements belong mostly to one row.
Public classMatrixMath.MatrixRowROVector<T> Wrapper for a row of an existing matrix to a read-only vector.
Public classMatrixMath.MatrixRowVector<T> Wrapper for a matrix row to a vector.
Public classMatrixMath.MatrixWithOneColumn<T> Implements a vertical vector, i.e. a matrix which has only one column, but many rows.
Public classMatrixMath.MatrixWithOneRow<T> Implements a horizontal vector, i.e. a matrix which has only one row, but many columns.
Public classMatrixMath.ROMatrixFrom2DArray<T> Wraps a 2d array to a read-only matrix.
Public classMatrixMath.ROMatrixFromColumnMajorLinearArray<T> 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.
Public classMatrixMath.ROMatrixFromRowMajorLinearArray<T> 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.
Public classMatrixMath.RWMatrixFrom2DArray<T> Wraps a 2D array to a read-only matrix.
Public classMatrixMath.ScalarAsMatrix<T> Implements a scalar as a special case of the matrix which has the dimensions (1,1).
Public classMatrixMath.SingularValueDecomposition Class to calculate the singular value decomposition.
Public classMatrixMath.TopSpineJaggedArrayMatrix<T> REMatrix is a matrix implementation that is relatively easy to extend to the right, i.e. to append columns. It is vertical oriented, i.e. the storage is as a number of vertical vectors.
Public classNotPositiveDefiniteExceptionThe exception is thrown when a none positive definite matrix is passed a method not expecting one.
Public classNotSquareMatrixExceptionThe exception is thrown when a none square matrix is passed a method not expecting one.
Public classRODoubleMatrixInArray1DColumnMajorRepresentation 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.
Public classRODoubleMatrixInArray1DRowMajorRepresentation Wraps a linear array to a read-only matrix. The array is in row-major order, i.e. the first elements of the linear array belong to the first row of the matrix (the column values change more quickly). The index of the linear array is calculated as index = column + row*NumberOfColumns. This representation is used for instance by C, C++, Mathematica, Pascal and Python.
Public classROVectorBase<T> 
Public classSingularMatrixExceptionThe exception is thrown when a singular matrix is passed a method not expecting one.
Public classSparseDoubleVector 
Public classTikhonovRegularizedNonnegativeMatrixFactorization
Public classVector<T> Defines the generic class for Vector classes.
Public classVectorBuilder<T> Generic linear algebra type builder, for situations where a matrix or vector must be created in a generic way. Usage of generic builders should not be required in normal user code.
Public classVectorExtensions 
Public classVectorMath VectorMath provides common static functions concerning vectors.
Protected classVectorMath.ROVectorWrapperOfIROVector<T> 
Protected classVectorMath.VectorWrapperOfIVector<T> 
Public classVectorSpacingEvaluator Statistics of the spacing between adjacent vector elements. The spaces are defined in the forward direction, i.e. as vec[i+1]-vec[i].
Structures
 StructureDescription
Public structureMatrixWrapperStructForColumnMajorOrderLinearArray<T> Very thin wrapper structure that wraps a column major order linear array, i.e. consecutive elements of the linear array belong most probably to the same column, to provide information on number of rows and columns. Attention: this is not LAPACK convention (!)).
Public structureMatrixWrapperStructForLeftSpineJaggedArray<T> Very thin wrapper structure around a jagged array just to provided number of rows and columns along with the array itself. The spine array is oriented vertically, thus access to the array is down by array[row][column].
Public structureMatrixWrapperStructForRowMajorOrderLinearArray<T> Thin wrapper structure that wraps a row major order linear array, i.e. consecutive elements of the linear array belong most probably to the same row, to provide information on number of rows and columns. Attention: this is not LAPACK convention (!)). If using LAPACK, you need column major order (MatrixWrapperStructForColumnMajorOrderLinearArray<T>).
Public structureMatrixWrapperStructForTopSpineJaggedArray<T> Very thin wrapper structure around a jagged array just to provided number of rows and columns along with the array itself. The spine array is oriented vertically, i.e. the rows protruding to the right from the spine array. Access to the underlying array is done by array[row][column].
Public structureVectorMath.RODoubleArrayWrapperStructAmendedUnshifted Serves as thin wrapper struct for an array when additional data at the start and the end of the array are neccessary.
Public structureVectorMath.ROFloatArrayWrapperStructAmendedUnshifted Serves as thin wrapper struct for an array when additional data at the start and the end of the array are neccessary.
Public structureVectorMath.ROIntArrayWrapperStructAmendedUnshifted Serves as thin wrapper struct for an array when additional data at the start and the end of the array are neccessary.
Public structureVectorMath.ROSByteArrayWrapperStructAmendedUnshifted Serves as thin wrapper struct for an array when additional data at the start and the end of the array are neccessary.
Public structureVectorMath.ROShortArrayWrapperStructAmendedUnshifted Serves as thin wrapper struct for an array when additional data at the start and the end of the array are neccessary.
Interfaces
 InterfaceDescription
Public interfaceIBottomExtensibleComplexDoubleMatrix Extends IComplexDoubleMatrix in a way that another matrix of appropriate dimensions can be appended to the bottom of the matrix.
Public interfaceIBottomExtensibleComplexFloatMatrix Extends IComplexFloatMatrix in a way that another matrix of appropriate dimensions can be appended to the bottom of the matrix.
Public interfaceIBottomExtensibleMatrix<T> IBottomExtensibleMatrix extends IMatrix in a way that another matrix of appropriate dimensions can be appended to the bottom of the matrix.
Public interfaceICholeskyDecomposition Cholesky Decomposition of a symmetric, positive definite matrix.
Public interfaceIComplexDoubleMatrix Represents the simplest form of a 2D matrix of Altaxo.Calc.LinearAlgebra.Complex values, which is readable and writeable.
Public interfaceIComplexDoubleSequence 
Public interfaceIComplexDoubleVector Interface for a readable and writeable vector of Complex values.
Public interfaceIComplexFloatMatrix Represents the simplest form of a 2D matrix of Complex32 values, which is readable and writeable.
Public interfaceIComplexFloatSequence 
Public interfaceIComplexFloatVector Interface for a readable and writeable vector of Complex values.
Public interfaceIEigenvalueDecomposition Determines the eigenvalues and eigenvectors of a real square matrix.
Public interfaceIExtensibleComplexDoubleMatrix Extends IComplexDoubleMatrix in a way that another matrix of appropriate dimensions can be appended either to the right or to the bottom of the matrix.
Public interfaceIExtensibleComplexDoubleVector Special vector to which another vector can be appended to.
Public interfaceIExtensibleComplexFloatMatrix Extends IComplexFloatMatrix in a way that another matrix of appropriate dimensions can be appended either to the right or to the bottom of the matrix.
Public interfaceIExtensibleComplexFloatVector Special vector to which another vector can be appended to.
Public interfaceIExtensibleMatrix<T> IExtensibleMatrix extends IMatrix in a way that another matrix of appropriate dimensions can be appended either to the right or to the bottom of the matrix.
Public interfaceIExtensibleVector<T> Extends IVector<T> in a way that another vector can be appended at the end of this vector.
Public interfaceILinearEquationSolver<T> Interface to a solver for linear equations. The procedure can either be non-destructive (keeping the matrix and the vector b), or destructive (not keeping matrix m and vector b). The destructive solving process may be faster, since saving of the matrix and the vector is not required.
Public interfaceILuDecomposition LU decomposition of a rectangular matrix.
Public interfaceIMapackMatrixMatrix provides the fundamental operations of numerical linear algebra.
Public interfaceIMatrix<T> IMatrix represents the simplest form of a 2D matrix, which is readable and writeable.
Public interfaceIMatrixInArray1DColumnMajorRepresentation<TElement> Designates that the matrix is represented as a linear array of TElement values. 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 Fortran, Julia, MATLAB, Octave, Scilab, GLSL and HLSL.
Public interfaceIMatrixInArray1DRowMajorRepresentation<TElement> Designates that the matrix is represented as a linear array of TElement values. The array is in row-major order, i.e. the first elements of the linear array belong to the first row of the matrix (the column values change more quickly). The index of the linear array is calculated as index = column + row*NumberOfColumns. This representation is used for instance by C, C++, Mathematica, Pascal and Python.
Public interfaceIMatrixLevel1<T> 
Public interfaceINumericSequence<T> Interface to a sequence of elements with unknown length.
Public interfaceIQrDecomposition QR decomposition for a rectangular matrix.
Public interfaceIRightExtensibleComplexDoubleMatrix Extends IComplexDoubleMatrix in a way that another matrix of appropriate dimensions can be appended to the right of the matrix.
Public interfaceIRightExtensibleComplexFloatMatrix Extends IComplexFloatMatrix in a way that another matrix of appropriate dimensions can be appended to the right of the matrix.
Public interfaceIRightExtensibleMatrix<T> IRightExtensibleMatrix extends IMatrix in a way that another matrix of appropriate dimensions can be appended to the right of the matrix.
Public interfaceIROBandMatrix<T> 
Public interfaceIROComplexDoubleMatrix IROMatrix represents a read-only matrix of Altaxo.Calc.LinearAlgebra.Complex values.
Public interfaceIROComplexDoubleVector Interface for a read-only vector of Complex values.
Public interfaceIROComplexFloatMatrix IROMatrix represents a read-only matrix of Complex32 values.
Public interfaceIROComplexFloatVector Interface for a read-only vector of Complex values.
Public interfaceIROMatrix<T> IROMatrix represents a read-only matrix of values.
Public interfaceIROMatrixLevel1<T> Operations on matrices which do not change the matrix instance.
Public interfaceIROSparseMatrix<T> 
Public interfaceISingularValueDecomposition Singular Value Decomposition for a rectangular matrix.
Public interfaceISpacedInterval 
Public interfaceIVector<T> Interface for a a readable and writeable vector vector of values.
Enumerations
 EnumerationDescription
Public enumerationExistingData 
Public enumerationSymmetricity 
Public enumerationZeros