Converts a banded matrix to a general matrix.

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

Syntax

C#
public static DoubleComplexMatrix ToGeneralMatrix(
	DoubleComplexBandMatrix B
)
Visual Basic (Declaration)
Public Shared Function ToGeneralMatrix ( _
	B As DoubleComplexBandMatrix _
) As DoubleComplexMatrix
Visual C++
public:
static DoubleComplexMatrix^ ToGeneralMatrix(
	DoubleComplexBandMatrix^ B
)

Return Value

A new general matrix containing the values of the banded matrix.

See Also