DoubleMatrix Class

Represents a collection of doubles arranged in rows and columns. Provides methods to operate algebraically on matrices.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public class DoubleMatrix : IList<double>, 
	ICollection<double>, IEnumerable<double>, IEnumerable, 
	IReadOnlyList<double>, IReadOnlyCollection<double>, IComplexMatrixPatterns, 
	IMatrixPatterns, IReadOnlyTabularCollection<double, DoubleMatrix>, ITabularCollection<double, DoubleMatrix>
Inheritance
Object    DoubleMatrix
Implements
IComplexMatrixPatterns, IMatrixPatterns, IReadOnlyTabularCollectionDouble, DoubleMatrix, ITabularCollectionDouble, DoubleMatrix, ICollectionDouble, IEnumerableDouble, IListDouble, IReadOnlyCollectionDouble, IReadOnlyListDouble, IEnumerable

Remarks

Instantiation

DoubleMatrix objects can be created using different storage schemes. To allocate storage for each matrix entry, so applying a Dense scheme, one can exploit one of the overloaded factory method Dense, such as Dense(Int32, Int32). On the contrary, method Sparse returns instances whose scheme is StorageScheme.CompressedRow, which means that storage is allocated for non-zero entries only, using a compressed sparse row scheme.

Matrices can also be created by loading data from a stream; see, for example, Encode(TextReader, Char, IndexCollection, Boolean, DictionaryInt32, Codifier, IFormatProvider).

Indexing

In a matrix, entries are arranged in rows and columns. Zero-based indexes are assigned to rows and columns, so that each entry can be identified by the indexes of the specific row and column on which it lies.

Let LaTeX equation be a matrix, and consider its generic entry

LaTeX equation

where LaTeX equation and LaTeX equation are the number of rows and columns of LaTeX equation, respectively.

Entry LaTeX equation can be set or get through the indexer ItemInt32, Int32. Further overloads of the indexer enable the access to sub-matrices, as well.

A linear index completely identifies an entry, assuming that entries are linearly ordered following the ColumnMajor data order. This means that entry LaTeX equation has linear index equal to LaTeX equation, and matrix entries can be enumerated as follows:

LaTeX equation

where LaTeX equation is the Count of the matrix.

Given a linear index, the corresponding entry can be accessed via the indexer ItemInt32. In order to retrieve entries corresponding to multiple linear indexes simultaneously, linear indexers are also overloaded to accept IndexCollection instances, or strings as arguments.

Dimensions

The dimensions of a matrix can be inspected using the properties NumberOfRows and NumberOfColumns, Use the property Count to know how many entries are arranged in a matrix.

The following table reports some particular dimensions for which a property exists which can be evaluated to inspect if the dimensions hold true for a given matrix.

Matrix PropertyNumber of rowsNumber of columns
IsScalar11
IsRowVector1Any
IsColumnVectorAny1

In addition, property IsSquare returns true for matrices having the same number of rows and columns. You can also inspect property IsVector to verify if a matrix instance has only one row or column.

Diagonals

There are LaTeX equation diagonals in LaTeX equation.

The main diagonal of LaTeX equation is also said the diagonal of order 0, and is the collection of entries LaTeX equation such that LaTeX equation.

If LaTeX equation, then the matrix has LaTeX equation super-diagonals: for LaTeX equation, the LaTeX equation-th super-diagonal is the collection of entries corresponding to the positions

LaTeX equation

If LaTeX equation, the matrix has LaTeX equation sub-diagonals: for LaTeX equation, the LaTeX equation-th sub-diagonal is the collection of entries corresponding to the positions

LaTeX equation

Bandwidths

The lower bandwidth of LaTeX equation is the smallest integer, say LaTeX equation, such that LaTeX equation if LaTeX equation.

The upper bandwidth of a matrix LaTeX equation is the smallest integer, say LaTeX equation, such that LaTeX equation if LaTeX equation.

These definitions imply that, if LaTeX equation, then the sub-diagonal of order LaTeX equation contains all zero entries, and if LaTeX equation, then the super-diagonal of order LaTeX equation contains all zero entries.

Properties LowerBandwidth and UpperBandwidth can be inspected to access the bandwidths of a given instance.

Patterns

The arrangement of zero entries in a matrix often follows a particular pattern. Some properties are defined which can be tested to verify if any of these patterns hold for a given matrix.

Relevant patterns can be described by means of lower and upper matrix bandwidths. For instance, an upper triangular matrix can be defined as a square matrix having sub-diagonals whose entries are all zero, or, equivalently, as a square matrix having a lower bandwidth equal to 0.

The following table reports some bandwidth-dependent patterns for which a property exists which can be evaluated to inspect if the pattern holds true for a given square matrix.

Matrix Pattern PropertyLower BandwidthUpper Bandwidth
IsLowerTriangularAny0
IsUpperTriangular0Any
IsLowerHessenbergAny0 or 1
IsUpperHessenberg0 or 1Any
IsDiagonal00
IsLowerBidiagonal0 or 10
IsUpperBidiagonal00 or 1
IsTridiagonal0 or 10 or 1

Finally, property IsTriangular can be inspected to verify if a matrix instance is lower or upper triangular, IsBidiagonal to verify if the instance is lower or upper bidiagonal, while property IsHessenberg returns a value indicating if a matrix instance is lower or upper Hessenberg.

Enumeration of entries and rows

Matrix values can be enumerated, and queried, using the "Linq to Objects" paradigm (see, e.g., the System.Linq documentation). Matrices can also be enumerated by rows using the iterator AsRowCollection. This means that you can apply the LINQ approach to retrieve data from a matrix: you write declarative code that describes what you want to retrieve and at what conditions, which can be specified to filter, order, and aggregate data as needed.

Memory usage

Matrix entries can be stored using different data schemes, as enumerated in StorageScheme.

The data currently stored can be accessed as an array through the GetStorage method.

  Caution

This method is intended for advanced users and must always be used carefully. For performance reasons, the returned reference points directly to the matrix internal data. Do not call GetStorage if you do not have complete control of the instance you used to invoke the method.

Method AsColumnMajorDenseArray always returns a ColumnMajor ordered array which is a dense representation of the matrix entries, irrespective of the specific data scheme used to implement the matrix. If the underlying scheme is Dense, such method returns a copy of the matrix data.

Serialization

Matrices can be loaded from, or saved to a CSV file through the CsvDoubleMatrixSerializer class.

Matrices can also be represented as JSON strings, see JsonSerialization.

Constructors

DoubleMatrix Initializes a new instance of the DoubleMatrix class as a scalar matrix having the specified value.

Properties

ColumnNames Exposes the dictionary of column names, keyed by column indexes.
Count Gets the number of elements in this instance.
HasColumnNames Gets a value indicating whether this instance has at least a named column.
HasRowNames Gets a value indicating whether this instance has at least a named row.
IsBidiagonal Gets a value indicating whether this instance is bidiagonal.
IsColumnVector Gets a value indicating whether this instance is a column vector.
IsDiagonal Gets a value indicating whether this instance is diagonal.
IsHermitian Gets a value indicating whether this instance is Hermitian.
IsHessenberg Gets a value indicating whether this instance is Hessenberg.
IsLowerBidiagonal Gets a value indicating whether this instance is lower bidiagonal.
IsLowerHessenberg Gets a value indicating whether this instance is lower Hessenberg.
IsLowerTriangular Gets a value indicating whether this instance is lower triangular.
IsReadOnly Gets a value indicating whether this instance is read-only.
IsRowVector Gets a value indicating whether this instance is a row vector.
IsScalar Gets a value indicating whether this instance is scalar.
IsSkewHermitian Gets a value indicating whether this instance is Skew-Hermitian.
IsSkewSymmetric Gets a value indicating whether this instance is skew symmetric.
IsSquare Gets a value indicating whether this instance is square.
IsSymmetric Gets a value indicating whether this instance is symmetric.
IsTriangular Gets a value indicating whether this instance is triangular.
IsTridiagonal Gets a value indicating whether this instance is tridiagonal.
IsUpperBidiagonal Gets a value indicating whether this instance is upper bidiagonal.
IsUpperHessenberg Gets a value indicating whether this instance is upper Hessenberg.
IsUpperTriangular Gets a value indicating whether this instance is upper triangular.
IsVector Gets a value indicating whether this instance is a vector.
ItemInt32 Gets or sets the element of this instance corresponding to the specified linear index.
ItemIndexCollection, IndexCollection Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemIndexCollection, Int32 Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemIndexCollection, String Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemInt32, IndexCollection Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemInt32, Int32 Gets or sets the element of this instance corresponding to the specified row and column indexes.
ItemInt32, String Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemString, IndexCollection Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemString, Int32 Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemString, String Gets or sets the elements of this instance corresponding to the specified row and column indexes.
ItemIndexCollection, IndexCollection, Boolean Gets the elements of this instance corresponding to the specified row and column indexes.
Obsolete.
ItemIndexCollection, String, Boolean Gets the elements of this instance corresponding to the specified row and column indexes.
Obsolete.
ItemString, IndexCollection, Boolean Gets the elements of this instance corresponding to the specified row and column indexes.
Obsolete.
ItemString, String, Boolean Gets the elements of this instance corresponding to the specified row and column indexes.
Obsolete.
LowerBandwidth Gets the lower bandwidth of this instance.
Name Gets or sets the name of this instance.
NumberOfColumns Gets the number of columns of this instance.
NumberOfRows Gets the number of rows of this instance.
RowNames Exposes the dictionary of row names, keyed by row indexes.
StorageOrder Gets the storage order of this instance.
StorageScheme Gets the storage scheme of this instance.
UpperBandwidth Gets the upper bandwidth of this instance.

Methods

Add(Complex, DoubleMatrix) Determines the addition of a scalar to a matrix.
Add(Double, DoubleMatrix) Determines the addition of a scalar to a matrix.
Add(DoubleMatrix, DoubleMatrix) Determines the sum of two matrices.
Add(DoubleMatrix, Double) Determines the addition of a matrix to a scalar.
Add(DoubleMatrix, 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.
AsReadOnly Returns a read-only representation of the DoubleMatrix.
AsRowCollection Returns the collection of rows in the DoubleMatrix.
AsRowCollection(IndexCollection) Returns the collection of the rows in the DoubleMatrix corresponding to the specified indexes.
ContainsDetermines whether the ICollectionT contains a specific value.
CopyToCopies the elements of the ICollectionT to an Array, starting at a particular Array index.
Dense(Double) Creates a dense DoubleMatrix instance having the same size and data of the specified two-dimensional array.
Dense(Int32, Int32) Creates a dense DoubleMatrix instance having the specified size, and assigns zero to each matrix entry.
Dense(Int32, Int32, IEnumerableDouble) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries assuming ColMajor ordering.
Dense(Int32, Int32, Double) Creates a dense DoubleMatrix instance having the specified size, and assigns the same value to each matrix entry.
Dense(Int32, Int32, Double) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries assuming ColMajor ordering.
Dense(Int32, Int32, IEnumerableDouble, StorageOrder) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries applying the given storage order.
Dense(Int32, Int32, Double, StorageOrder) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries applying the given storage order.
Dense(Int32, Int32, Double, Boolean) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries, possibly preventing copying operations before creation.
Diagonal(DoubleMatrix) Creates a square DoubleMatrix instance having the specified data on its main diagonal and zero otherwise.
Diagonal(ReadOnlyDoubleMatrix) Creates a square DoubleMatrix instance having the specified data on its main diagonal and zero otherwise.
Dispose Disposes this instance.
Dispose(Boolean) Releases unmanaged and - optionally - managed resources.
Divide(Complex, DoubleMatrix) Determines the division of a scalar by a matrix.
Divide(Double, DoubleMatrix) Determines the division of a scalar by a matrix.
Divide(DoubleMatrix, DoubleMatrix) Determines the division of a matrix by another.
Divide(DoubleMatrix, Double) Determines the division of a matrix by a scalar.
Divide(DoubleMatrix, Complex) Determines the division of a matrix by a scalar.
ElementWiseMultiply Determines the element wise product of two matrices.
Encode(String, Char, IndexCollection, Boolean) Encodes numerical data from the specified file.
Encode(TextReader, Char, IndexCollection, Boolean) Encodes numerical data from the stream underlying the specified text reader.
Encode(String, Char, IndexCollection, Boolean, DictionaryInt32, Codifier, IFormatProvider) Encodes categorical or numerical data from the given file into a matrix, applying specific categorical data codifiers.
Encode(TextReader, Char, IndexCollection, Boolean, DictionaryInt32, Codifier, IFormatProvider) Encodes categorical or numerical data from the stream underlying the specified text reader into a matrix, applying specific categorical data codifiers.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Finalize Finalizes an instance of the DoubleMatrix class.
(Overrides ObjectFinalize)
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.
FromDouble Converts from Double to DoubleMatrix.
FromIndexPartition Converts from IndexPartitionT of Double to DoubleMatrix.
FromReadOnlyDoubleMatrix Converts from ReadOnlyDoubleMatrix to DoubleMatrix.
GetEnumerator Returns an enumerator that iterates through the collection.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetStorage Gets the elements currently stored in this instance.
GetTypeGets the Type of the current instance.
(Inherited from Object)
Identity Creates a DoubleMatrix instance representing the identity matrix having the specified dimension.
IndexOfDetermines the index of a specific item in the IListT.
InPlaceApply Evaluates the specified function at each entry of this instance, and substitutes each entry with its corresponding function value.
InPlaceTranspose Transposes this instance.
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Multiply(Complex, DoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(Double, DoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(DoubleMatrix, DoubleMatrix) Determines the product of two matrices.
Multiply(DoubleMatrix, Double) Determines the multiplication of a matrix by a scalar.
Multiply(DoubleMatrix, Complex) Determines the multiplication of a matrix by a scalar.
Negate Determines the negation of a matrix.
RemoveAllColumnNames Removes all column names.
RemoveAllRowNames Removes all row names.
RemoveColumnName Removes the name of the specified column.
RemoveRowName Removes the name of the specified row.
SetColumnName Sets the name of the specified column.
SetRowName Sets the name of the specified row.
Sparse Creates a sparse DoubleMatrix instance having the specified size and initial capacity to store entries different from zero.
Subtract(Complex, DoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtract(Double, DoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtract(DoubleMatrix, DoubleMatrix) Determines the difference between two matrices.
Subtract(DoubleMatrix, Double) Determines the subtraction of a scalar from a matrix.
Subtract(DoubleMatrix, Complex) Determines the subtraction of a scalar from a matrix.
ToDouble Converts from DoubleMatrix 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.

Operators

Addition(Complex, DoubleMatrix) Determines the addition of a scalar to a matrix.
Addition(Double, DoubleMatrix) Determines the addition of a scalar to a matrix.
Addition(DoubleMatrix, DoubleMatrix) Determines the sum of two matrices.
Addition(DoubleMatrix, Double) Determines the addition of a matrix to a scalar.
Addition(DoubleMatrix, Complex) Determines the addition of a matrix to a scalar.
Division(Complex, DoubleMatrix) Determines the division of a scalar by a matrix.
Division(Double, DoubleMatrix) Determines the division of a scalar by a matrix.
Division(DoubleMatrix, DoubleMatrix) Determines the division of a matrix by another.
Division(DoubleMatrix, Double) Determines the division of a matrix by a scalar.
Division(DoubleMatrix, Complex) Determines the division of a matrix by a scalar.
(Double to DoubleMatrix) Performs an explicit conversion from Double to DoubleMatrix.
(DoubleMatrix to Double) Performs an explicit conversion from DoubleMatrix to Double.
(IndexPartitionDouble to DoubleMatrix) Performs an explicit conversion from IndexPartitionT of Double to DoubleMatrix.
(ReadOnlyDoubleMatrix to DoubleMatrix) Performs an explicit conversion from ReadOnlyDoubleMatrix to DoubleMatrix.
Multiply(Complex, DoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(Double, DoubleMatrix) Determines the multiplication of a scalar by a matrix.
Multiply(DoubleMatrix, DoubleMatrix) Determines the product of two matrices.
Multiply(DoubleMatrix, Double) Determines the multiplication of a matrix by a scalar.
Multiply(DoubleMatrix, Complex) Determines the multiplication of a matrix by a scalar.
Subtraction(Complex, DoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtraction(Double, DoubleMatrix) Determines the subtraction of a matrix from a scalar.
Subtraction(DoubleMatrix, DoubleMatrix) Determines the difference between two matrices.
Subtraction(DoubleMatrix, Double) Determines the subtraction of a scalar from a matrix.
Subtraction(DoubleMatrix, Complex) Determines the subtraction of a scalar from a matrix.
UnaryNegation(DoubleMatrix) Determines the negation of a matrix.

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.
IEnumerableGetEnumeratorReturns 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