  | NMathFunctionsToGeneralMatrix(DoubleSymBandMatrix) Method | 
            Converts a symmetric banded matrix to a general matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleMatrix ToGeneralMatrix(
	DoubleSymBandMatrix A
)
Public Shared Function ToGeneralMatrix ( 
	A As DoubleSymBandMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ ToGeneralMatrix(
	DoubleSymBandMatrix^ A
)
static member ToGeneralMatrix : 
        A : DoubleSymBandMatrix -> DoubleMatrix Parameters
- A  DoubleSymBandMatrix
 - A symmetric banded matrix.
 
Return Value
DoubleMatrix
            A new general matrix containing the values of the symmetric
            banded matrix.
             
See Also