Get the tensor product of this matrix and another matrix. If this matrix is an m x n
matrix and RightHandSide is a p x q matrix then the resulting matrix is a mp x nq
matrix.

C# | Visual Basic | Visual C++ |
public ComplexMatrix TensorAsRightHandSide( ComplexMatrix LeftHandSide )
Public Function TensorAsRightHandSide ( _ LeftHandSide As ComplexMatrix _ ) As ComplexMatrix
public: ComplexMatrix^ TensorAsRightHandSide( ComplexMatrix^ LeftHandSide )

- LeftHandSide (ComplexMatrix)
- The left hand side of the tensor product to return. (This matrix is the right hand side.)

The tensor product of this matrix and LeftHandSide.