Get the identity matrix (square matrix) of the specified Length. Hence
the returned matrix is a Length x Length matrix with 1's along the diagonal.

C# | Visual Basic | Visual C++ |
public static ComplexMatrix CreateIdentityMatrix( int Length )
Public Shared Function CreateIdentityMatrix ( _ Length As Integer _ ) As ComplexMatrix
public: static ComplexMatrix^ CreateIdentityMatrix( int Length )

- Length (Int32)
- Length of the identity matrix.

The identity matrix of the specified length.

Exception | Condition |
---|---|
NotImplementedException | This method is not yet
implemented. |