Class DoubleCsrSparseMatrix stores a general sparse matrix using Compressed Row (CSR) storage format.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class DoubleCsrSparseMatrix : SparseMatrixData<CompressedSparseRow<double>, double>, 
	IEquatable<DoubleCsrSparseMatrix>, ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class DoubleCsrSparseMatrix _
	Inherits SparseMatrixData(Of CompressedSparseRow(Of Double), Double) _
	Implements IEquatable(Of DoubleCsrSparseMatrix), ICloneable
Visual C++
[SerializableAttribute]
public ref class DoubleCsrSparseMatrix : public SparseMatrixData<CompressedSparseRow<double>^, double>, 
	IEquatable<DoubleCsrSparseMatrix^>, ICloneable

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.SparseMatrixData<(Of <(CompressedSparseRow<(Of <(Double>)>), Double>)>)
    CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
      CenterSpace.NMath.Matrix..::.DoubleSymCsrSparseMatrix

See Also