Jagged |
public class JaggedArrayMatrix : IMatrix<double>, IROMatrix<double>, IBottomExtensibleMatrix<double>
The JaggedArrayMatrix type exposes the following members.
Name | Description | |
---|---|---|
JaggedArrayMatrix(Double) | Uses an already existing array for the matrix data. | |
JaggedArrayMatrix(Int32, Int32) | Sets up an empty matrix with dimension(row,cols). | |
JaggedArrayMatrix(Double, Int32, Int32) | Uses an already existing array for the matrix data. |
Name | Description | |
---|---|---|
Array | Provides direct access to the underlying jagged array. JaggedArrayMath can then be used to speed up computations. | |
ColumnCount | Number of columns of the matrix. | |
Item | Element accessor. Accesses the element [row, col] of the matrix. | |
RowCount | Number of Rows of the matrix. |
Name | Description | |
---|---|---|
AppendBottom | Appends the matrix a at the bottom of this matrix. Either this matrix must be empty (dimensions (0,0)) or the matrix to append must have the same number of columns than this matrix. | |
Clear | Clears the content of the matrix. | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
SetDimension | Set up the dimensions of the matrix. Discards the old content and reset the matrix with the new dimensions. All elements become zero. | |
ToString |
Represents the content of the matrix as a string.
(Overrides ObjectToString) |
Name | Description | |
---|---|---|
Any |
Determines whether any element of the provided matrix a fulfills the given predicate.
(Defined by MatrixMath) | |
CopyColumn |
Gets the column of a matrix copied into a vector.
(Defined by MatrixMath) | |
CopyColumn |
Gets the column of a matrix copied into a vector.
(Defined by MatrixMath) | |
CopyColumnDouble |
Copies one column of a source matrix into a destination matrix to a given row and column offset.
(Defined by MatrixMath) | |
CopyRow |
Gets the row of a matrix copied into a vector.
(Defined by MatrixMath) | |
CopyRow |
Gets the row of a matrix copied into a vector.
(Defined by MatrixMath) | |
MapIndexedDouble, T1 | (Defined by MatrixMath) | |
Max |
Get the maximum value of all elements of the specified matrix a.
(Defined by MatrixMath) | |
Min |
Get the minimum value of all elements of the specified matrix a.
(Defined by MatrixMath) | |
Norm | (Defined by MatrixMath) | |
ReplaceNaNAndInfiniteElementsWith |
Replaces all matrix elements that are NaN (Not a Number) or infinite with the value of replacementValue.
(Defined by MatrixMath) | |
ReplaceNaNElementsWith |
Replaces all matrix elements that are NaN (not a number) with the value of replacementValue.
(Defined by MatrixMath) | |
SetColumn |
Gets the column of a matrix copied into a vector.
(Defined by MatrixMath) | |
SetColumn |
Gets the column of a matrix copied into a vector.
(Defined by MatrixMath) | |
SetMatrixElements |
Set all matrix elements to the provided value scalar.
(Defined by MatrixMath) | |
SetMatrixElements |
Sets the matrix elements to the value provided by a setter function Setter.
(Defined by MatrixMath) | |
SetRow |
Gets the row of a matrix copied into a vector.
(Defined by MatrixMath) | |
SetRow |
Gets the row of a matrix copied into a vector.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
SubMatrixT |
Gets a new submatrix, i.e. a matrix containing selected elements of the original matrix a.
(Defined by MatrixMath) | |
ToZeroMean |
Calculates the mean value of all matrix elements and then subtracts the mean value from each matrix element, so that the mean value of the resulting matrix is zero.
(Defined by MatrixMath) | |
ToZeroMean |
Calculates the mean value of all matrix elements and then subtracts the mean value from each matrix element, so that the mean value of the resulting matrix is zero.
(Defined by MatrixMath) | |
Trace |
Get the trace of square matrix a, i.e. the sum of diagonal elements.
(Defined by MatrixMath) | |
ZeroMatrix |
Set all elements in the matrix to 0 (zero)
(Defined by MatrixMath) |