Sparse |
[Missing <summary> documentation for "T:Altaxo.Calc.LinearAlgebra.Storage.SparseCompressedRowMatrixStorage`1"]
[SerializableAttribute] public class SparseCompressedRowMatrixStorage<T> : MatrixStorage<T> where T : struct, new(), IEquatable<T>, IFormattable
[Missing <typeparam name="T"/> documentation for "T:Altaxo.Calc.LinearAlgebra.Storage.SparseCompressedRowMatrixStorage`1"]
The SparseCompressedRowMatrixStorageT type exposes the following members.
Name | Description | |
---|---|---|
IsDense |
True if the matrix storage format is dense.
(Overrides MatrixStorageTIsDense) | |
IsFullyMutable |
True if all fields of this matrix can be set to any value.
False if some fields are fixed, like on a diagonal matrix.
(Overrides MatrixStorageTIsFullyMutable) | |
Item |
Gets or sets the value at the given row and column, with range checking.
(Inherited from MatrixStorageT) | |
ValueCount | Gets the number of non zero elements in the matrix. |
Name | Description | |
---|---|---|
AsArray | (Inherited from MatrixStorageT) | |
AsColumnArrays | (Inherited from MatrixStorageT) | |
AsColumnMajorArray | (Inherited from MatrixStorageT) | |
AsRowArrays | (Inherited from MatrixStorageT) | |
AsRowMajorArray | (Inherited from MatrixStorageT) | |
At(Int32, Int32) |
Retrieves the requested element without range checking.
(Overrides MatrixStorageTAt(Int32, Int32)) | |
At(Int32, Int32, T) |
Sets the element without range checking.
(Overrides MatrixStorageTAt(Int32, Int32, T)) | |
Clear | (Overrides MatrixStorageTClear) | |
Clear(Int32, Int32, Int32, Int32) | (Inherited from MatrixStorageT) | |
ClearColumns | (Inherited from MatrixStorageT) | |
ClearRows | (Inherited from MatrixStorageT) | |
CopyColumnTo | (Inherited from MatrixStorageT) | |
CopyRowTo | (Inherited from MatrixStorageT) | |
CopySubColumnTo | (Inherited from MatrixStorageT) | |
CopySubMatrixTo | (Inherited from MatrixStorageT) | |
CopySubRowTo | (Inherited from MatrixStorageT) | |
CopyTo | (Inherited from MatrixStorageT) | |
Enumerate | (Overrides MatrixStorageTEnumerate) | |
EnumerateIndexed | (Overrides MatrixStorageTEnumerateIndexed) | |
EnumerateNonZero | (Overrides MatrixStorageTEnumerateNonZero) | |
EnumerateNonZeroIndexed | (Overrides MatrixStorageTEnumerateNonZeroIndexed) | |
Equals(MatrixStorageT) |
Indicates whether the current object is equal to another object of the same type.
(Inherited from MatrixStorageT) | |
Equals(Object) |
Determines whether the specified Object is equal to the current Object.
(Inherited from MatrixStorageT) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
Find | (Overrides MatrixStorageTFind(FuncT, Boolean, Zeros)) | |
Find2TOther | (Inherited from MatrixStorageT) | |
FindItem | Find item Index in nonZeroValues array | |
Fold2TOther, TState | (Inherited from MatrixStorageT) | |
FoldByColumnTU | (Inherited from MatrixStorageT) | |
FoldByRowTU | (Inherited from MatrixStorageT) | |
GetHashCode |
Returns a hash code for this instance.
(Overrides MatrixStorageTGetHashCode) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
IsMutableAt |
True if the specified field can be set to any value.
False if the field is fixed, like an off-diagonal field on a diagonal matrix.
(Overrides MatrixStorageTIsMutableAt(Int32, Int32)) | |
Map2To | (Inherited from MatrixStorageT) | |
MapIndexedInplace | (Overrides MatrixStorageTMapIndexedInplace(FuncInt32, Int32, T, T, Zeros)) | |
MapIndexedToTU | (Inherited from MatrixStorageT) | |
MapInplace | (Overrides MatrixStorageTMapInplace(FuncT, T, Zeros)) | |
MapSubMatrixIndexedToTU | (Inherited from MatrixStorageT) | |
MapToTU | (Inherited from MatrixStorageT) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
Normalize | ||
NormalizeDuplicates | Eliminate duplicate entries by adding them together. | |
NormalizeOrdering | ||
NormalizeZeros | ||
OfArray | ||
OfColumnArrays | ||
OfColumnEnumerables | ||
OfColumnMajorList | ||
OfColumnVectors | ||
OfCompressedSparseColumnFormat | Create a new sparse matrix storage from a compressed sparse column (CSC) format. This new storage will be independent from the given arrays. A new memory block will be allocated. | |
OfCompressedSparseRowFormat | Create a new sparse storage from a compressed sparse row (CSR) format. This new storage will be independent from the given arrays. A new memory block will be allocated for storing the matrix. | |
OfCoordinateFormat | Create a new sparse storage from a coordinate (COO) format. This new storage will be independent from the given arrays. A new memory block will be allocated for storing the matrix. | |
OfDiagonalInit | ||
OfIndexedEnumerable(Int32, Int32, IEnumerableTupleInt32, Int32, T) | ||
OfIndexedEnumerable(Int32, Int32, IEnumerableValueTupleInt32, Int32, T) | ||
OfInit | ||
OfMatrix | ||
OfRowArrays | ||
OfRowEnumerables | ||
OfRowMajorEnumerable | ||
OfRowVectors | ||
OfValue | ||
PopulateExplicitZerosOnDiagonal | Fill zeros explicitly on the diagonal entries as required by the Intel MKL direct sparse solver. | |
ToArray | (Overrides MatrixStorageTToArray) | |
ToColumnArrays | (Overrides MatrixStorageTToColumnArrays) | |
ToColumnMajorArray | (Overrides MatrixStorageTToColumnMajorArray) | |
ToRowArrays | (Overrides MatrixStorageTToRowArrays) | |
ToRowMajorArray | (Overrides MatrixStorageTToRowMajorArray) | |
ToString | Returns a string that represents the current object. (Inherited from Object) | |
TransposeTo | (Inherited from MatrixStorageT) |
Name | Description | |
---|---|---|
ColumnCount | (Inherited from MatrixStorageT) | |
ColumnIndices | An array containing the column indices of the non-zero values. Element "j" of the array is the number of the column in matrix that contains the j-th value in the Values array. | |
RowCount | (Inherited from MatrixStorageT) | |
RowPointers | The array containing the row indices of the existing rows. Element "i" of the array gives the index of the element in the Values array that is first non-zero element in a row "i". The last value is equal to ValueCount, so that the number of non-zero entries in row "i" is always given by RowPointers[i+i] - RowPointers[i]. This array thus has length RowCount+1. | |
Values | Array that contains the non-zero elements of matrix. Values of the non-zero elements of matrix are mapped into the values array using the row-major storage mapping described in a compressed sparse row (CSR) format. |