Tensor this matrix with itself NumberOfTimes times.

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

- NumberOfTimes (Int32)
- Number of times to tensor this matrix with itself.

A reference to this register after the tensoring has been applied.

Exception | Condition |
---|---|
ArgumentOutOfRangeException | Thrown if NumberOfTimes is less than 0. |