|  | DoubleComplexMatrixIdentity Method | 
            Returns an identity matrix of the specified size.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexMatrix Identity(
	int order
)
Public Shared Function Identity ( 
	order As Integer
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ Identity(
	int order
)
static member Identity : 
        order : int -> DoubleComplexMatrix Parameters
- order  Int32
- The order of the matrix.
Return Value
DoubleComplexMatrix
            A square 
order x order matrix with ones on the main
            diagonal and zeros elsewhere.
            
 See Also
See Also