ReadOnlyDoubleMatrix Methods

Methods

Add(Complex, ReadOnlyDoubleMatrix) Determines the addition of a scalar to a matrix.
Add(Double, ReadOnlyDoubleMatrix) Determines the addition of a scalar to a matrix.
Add(DoubleMatrix, ReadOnlyDoubleMatrix) Determines the sum of two matrices.
Add(ReadOnlyDoubleMatrix, DoubleMatrix) Determines the sum of two matrices.
Add(ReadOnlyDoubleMatrix, ReadOnlyDoubleMatrix) Determines the sum of two matrices.
Add(ReadOnlyDoubleMatrix, Double) Determines the addition of a matrix to a scalar.
Add(ReadOnlyDoubleMatrix, Complex) Determines the addition of a matrix to a scalar.
Apply Evaluates the specified function at each entry of this instance, and returns a matrix whose entries are given by the corresponding function values.
AsColumnMajorDenseArray Returns a column major ordered, dense representation of this instance.
ContainsDetermines whether the ICollectionT contains a specific value.
CopyToCopies the elements of the ICollectionT to an Array, starting at a particular Array index.
Divide(Complex, ReadOnlyDoubleMatrix) Determines the division of a scalar by a matrix.
Divide(Double, ReadOnlyDoubleMatrix) Determines the division of a scalar by a matrix.
Divide(DoubleMatrix, ReadOnlyDoubleMatrix) Determines the division of a matrix by another.
Divide(ReadOnlyDoubleMatrix, DoubleMatrix) Determines the division of a matrix by another.
Divide(ReadOnlyDoubleMatrix, ReadOnlyDoubleMatrix) Determines the division of a matrix by another.
Divide(ReadOnlyDoubleMatrix, Double) Determines the division of a matrix by a scalar.
Divide(ReadOnlyDoubleMatrix, Complex) Determines the division of a matrix by a scalar.
ElementWiseMultiply(DoubleMatrix, ReadOnlyDoubleMatrix) Determines the element wise product of two matrices.
ElementWiseMultiply(ReadOnlyDoubleMatrix, DoubleMatrix) Determines the element wise product of two matrices.
ElementWiseMultiply(ReadOnlyDoubleMatrix, ReadOnlyDoubleMatrix) Determines the element wise product of two matrices.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Find Searches for entries in this instance that equal the specified value, and returns their zero-based linear indexes.
FindNonzero Searches for nonzero entries in this instance, and returns their zero-based linear indexes.
FindWhile Searches for entries in this instance that matches the conditions defined by the specified predicate, and returns their zero-based linear indexes.
GetEnumerator Returns an enumerator that iterates through the collection.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IndexOfDetermines the index of a specific item in the IListT.
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Multiply(Complex, ReadOnlyDoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(Double, ReadOnlyDoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(DoubleMatrix, ReadOnlyDoubleMatrix) Determines the product of two matrices.
Multiply(ReadOnlyDoubleMatrix, DoubleMatrix) Determines the product of two matrices.
Multiply(ReadOnlyDoubleMatrix, ReadOnlyDoubleMatrix) Determines the product of two matrices.
Multiply(ReadOnlyDoubleMatrix, Double) Determines the multiplication of a matrix by a scalar.
Multiply(ReadOnlyDoubleMatrix, Complex) Determines the multiplication of a matrix by a scalar.
Negate Determines the negation of a matrix.
Subtract(Complex, ReadOnlyDoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtract(Double, ReadOnlyDoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtract(DoubleMatrix, ReadOnlyDoubleMatrix) Determines the difference between two matrices.
Subtract(ReadOnlyDoubleMatrix, DoubleMatrix) Determines the difference between two matrices.
Subtract(ReadOnlyDoubleMatrix, ReadOnlyDoubleMatrix) Determines the difference between two matrices.
Subtract(ReadOnlyDoubleMatrix, Double) Determines the subtraction of a scalar from a matrix.
Subtract(ReadOnlyDoubleMatrix, Complex) Determines the subtraction of a scalar from a matrix.
ToDouble Converts from ReadOnlyDoubleMatrix to Double.
ToString Returns a String that represents this instance.
(Overrides ObjectToString)
Transpose Returns the transpose of this instance.
TryGetColumnName Tries to get the name of the specified column.
TryGetRowName Tries to get the name of the specified row.
Vec Returns the vectorization of this instance.
Vec(IndexCollection) Returns a column vector obtained by stacking the specified elements of this instance.

Explicit Interface Implementations

ICollectionDoubleAdd Adds an item to the ICollectionT. This implementation always throws a NotSupportedException.
ICollectionDoubleClear Removes all items from the ICollectionT. This implementation always throws a NotSupportedException.
ICollectionDoubleRemove Removes the first occurrence of a specific object from the ICollectionT. This implementation always throws a NotSupportedException.
IEnumerableGetEnumerator Returns an enumerator that iterates through a collection.
IListDoubleInsert Inserts an item to the IListT at the specified index. This implementation always throws a NotSupportedException.
IListDoubleRemoveAt Removes the IListT item at the specified index. This implementation always throws a NotSupportedException.

See Also