Click or drag to resize

DiagonalMatrixStorageT Methods

The DiagonalMatrixStorageT type exposes the following members.

Methods
 NameDescription
Public methodAsArray Gets the underlying two-dimensional array when directly available.
(Inherited from MatrixStorageT)
Public methodAsColumnArrays Gets the underlying column arrays when directly available.
(Inherited from MatrixStorageT)
Public methodAsColumnMajorArray Gets the underlying column-major array when directly available.
(Inherited from MatrixStorageT)
Public methodAsRowArrays Gets the underlying row arrays when directly available.
(Inherited from MatrixStorageT)
Public methodAsRowMajorArray Gets the underlying row-major array when directly available.
(Inherited from MatrixStorageT)
Public methodAt(Int32, Int32) Retrieves the requested element without range checking.
(Overrides MatrixStorageTAt(Int32, Int32))
Public methodAt(Int32, Int32, T) Sets the element without range checking.
(Overrides MatrixStorageTAt(Int32, Int32, T))
Public methodClear Sets all matrix entries to zero.
(Overrides MatrixStorageTClear)
Public methodClear(Int32, Int32, Int32, Int32) Sets a submatrix to zero.
(Inherited from MatrixStorageT)
Public methodClearColumns Sets the specified columns to zero.
(Inherited from MatrixStorageT)
Public methodClearRows Sets the specified rows to zero.
(Inherited from MatrixStorageT)
Public methodCopyColumnTo Copies a column into vector storage.
(Inherited from MatrixStorageT)
Public methodCopyRowTo Copies a row into vector storage.
(Inherited from MatrixStorageT)
Public methodCopySubColumnTo Copies part of a column into vector storage.
(Inherited from MatrixStorageT)
Public methodCopySubMatrixTo Copies a submatrix into another storage instance.
(Inherited from MatrixStorageT)
Public methodCopySubRowTo Copies part of a row into vector storage.
(Inherited from MatrixStorageT)
Public methodCopyTo Copies this matrix into another storage instance.
(Inherited from MatrixStorageT)
Public methodEnumerate Enumerates all matrix values.
(Overrides MatrixStorageTEnumerate)
Public methodEnumerateIndexed Enumerates all matrix values together with their indices.
(Overrides MatrixStorageTEnumerateIndexed)
Public methodEnumerateNonZero Enumerates all non-zero matrix values.
(Overrides MatrixStorageTEnumerateNonZero)
Public methodEnumerateNonZeroIndexed Enumerates all non-zero matrix values together with their indices.
(Overrides MatrixStorageTEnumerateNonZeroIndexed)
Public methodEquals(MatrixStorageT) Indicates whether the current object is equal to another object of the same type.
(Inherited from MatrixStorageT)
Public methodEquals(Object) Determines whether the specified Object is equal to the current Object.
(Inherited from MatrixStorageT)
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 methodFind Finds the first element matching a predicate.
(Overrides MatrixStorageTFind(FuncT, Boolean, Zeros))
Public methodFind2TOther Finds the first pair of elements from two matrices that matches a predicate.
(Inherited from MatrixStorageT)
Public methodFold2TOther, TState Folds values from this matrix and another matrix into a single state value.
(Inherited from MatrixStorageT)
Public methodFoldByColumnTU Folds each column into a target state array.
(Inherited from MatrixStorageT)
Public methodFoldByRowTU Folds each row into a target state array.
(Inherited from MatrixStorageT)
Public methodGetHashCode Returns a hash code for this instance.
(Overrides MatrixStorageTGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIsMutableAt 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))
Public methodMap2To Maps pairs of values from two matrices into a target matrix.
(Inherited from MatrixStorageT)
Public methodMapIndexedInplace Applies an indexed mapping function to each value in place.
(Overrides MatrixStorageTMapIndexedInplace(FuncInt32, Int32, T, T, Zeros))
Public methodMapIndexedToTU Maps each indexed value into another matrix storage.
(Inherited from MatrixStorageT)
Public methodMapInplace Applies a mapping function to each value in place.
(Overrides MatrixStorageTMapInplace(FuncT, T, Zeros))
Public methodMapSubMatrixIndexedToTU Maps an indexed submatrix into another matrix storage.
(Inherited from MatrixStorageT)
Public methodMapToTU Maps each value into another matrix storage.
(Inherited from MatrixStorageT)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodStatic memberOfArray Creates a diagonal matrix storage from a two-dimensional array.
Public methodStatic memberOfEnumerable Creates a diagonal matrix storage from diagonal values.
Public methodStatic memberOfIndexedEnumerable(Int32, Int32, IEnumerableTupleInt32, T) Creates a diagonal matrix storage from indexed diagonal values.
Public methodStatic memberOfIndexedEnumerable(Int32, Int32, IEnumerableValueTupleInt32, T) Creates a diagonal matrix storage from indexed tuple diagonal values.
Public methodStatic memberOfInit Creates a diagonal matrix storage initialized by an index-based initializer.
Public methodStatic memberOfMatrix Creates a diagonal matrix storage from another matrix storage.
Public methodStatic memberOfValue Creates a diagonal matrix storage initialized with a constant diagonal value.
Public methodToArray Creates a rectangular array copy of the matrix data.
(Overrides MatrixStorageTToArray)
Public methodToColumnArrays Creates jagged column-array copies of the matrix data.
(Overrides MatrixStorageTToColumnArrays)
Public methodToColumnMajorArray Creates a column-major array copy of the matrix data.
(Overrides MatrixStorageTToColumnMajorArray)
Public methodToRowArrays Creates jagged row-array copies of the matrix data.
(Overrides MatrixStorageTToRowArrays)
Public methodToRowMajorArray Creates a row-major array copy of the matrix data.
(Overrides MatrixStorageTToRowMajorArray)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodTransposeTo Copies the transpose of this matrix into another storage instance.
(Inherited from MatrixStorageT)
Top
See Also