  | NMathFunctionsCopyOnlyReal Method | 
            Returns a copy of the input matrix only if the input matrix contains
            only real values (no NaN's of infinite values allowed). If the 
            input matrix contains any non-real values an InvalidArgumentException
            is thrown.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleMatrix CopyOnlyReal(
	DoubleMatrix A
)
Public Shared Function CopyOnlyReal ( 
	A As DoubleMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ CopyOnlyReal(
	DoubleMatrix^ A
)
static member CopyOnlyReal : 
        A : DoubleMatrix -> DoubleMatrix Parameters
- A  DoubleMatrix
 - Matrix to copy.
 
Return Value
DoubleMatrixA deep copy of 
A if it contains only real values.
See Also