A general complex sparse matrix which is intended to be efficiently and easily updated.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
[SerializableAttribute]
public class ComplexSparseMatrix
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ComplexSparseMatrix
Visual C++
[SerializableAttribute]
public ref class ComplexSparseMatrix

Remarks

A ComplexSparseMatrix can be constructed from a set of arrays, or it can be abstractly created as an empty array and then incrementally built into final form. It is usually easier to create an empty ComplexSparseMatrix of set size and then use the Set method to set the elements of the array. When setting the elements of the sparse array, their positions should be thought of as their positions in the dense array. Elements can be set in any order, but only the elements set are stored.

This class includes methods to update the sparse matrix. There are also methods to multiply a sparse matrix and a vector or to multiply two sparse matrices. To solve a sparse linear system use ComplexSparseCholesky or ComplexSuperLU.

Inheritance Hierarchy

System..::.Object
Imsl.Math..::.ComplexSparseMatrix

See Also