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 DoubleMatrix ToGeneralMatrix(
	DoubleBandMatrix B
)
Visual Basic (Declaration)
Public Shared Function ToGeneralMatrix ( _
	B As DoubleBandMatrix _
) As DoubleMatrix
Visual C++
public:
static DoubleMatrix^ ToGeneralMatrix(
	DoubleBandMatrix^ B
)

Parameters

B
Type: CenterSpace.NMath.Matrix..::.DoubleBandMatrix
A banded matrix.

Return Value

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

See Also