Raise this matrix to the specified power. To the power of 0 return an identity matrix
of the same size. To the power of 1 leaves the matrix unaltered. Any higher number is
the matrix times itself Power times.

C# | Visual Basic | Visual C++ |
public ComplexMatrix RaiseToPower( int Power )
Public Function RaiseToPower ( _ Power As Integer _ ) As ComplexMatrix
public: ComplexMatrix^ RaiseToPower( int Power )

- Power (Int32)
- Power to raise to.

A reference to this matrix, after the operation is applied

Exception | Condition |
---|---|
ArgumentException | Raised if argument Power is less than 0. |