kron
Overloads
| Name | Description |
|---|---|
kron(const ComplexMatrix lhs, const ComplexMatrix rhs) -> ComplexMatrix | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const RealMatrix lhs, const RealMatrix rhs) -> RealMatrix | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const IntegerArray lhs, const IntegerArray rhs) -> IntegerArray | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const RealArray lhs, const RealArray rhs) -> RealArray | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const BoolArray lhs, const BoolArray rhs) -> BoolArray | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const ComplexArray lhs, const ComplexArray rhs) -> ComplexArray | Computes the Kronecker product between two arrays or matrices. It is defined as... |
kron(const ComplexMatrix lhs, const ComplexMatrix rhs) -> ComplexMatrix
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
- lhs: The ComplexMatrix to the left (inner).
- rhs: The ComplexMatrix to the right (outer).
kron(const RealMatrix lhs, const RealMatrix rhs) -> RealMatrix
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
- lhs: The RealMatrix to the left (inner).
- rhs: The RealMatrix to the right (outer).
kron(const IntegerArray lhs, const IntegerArray rhs) -> IntegerArray
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
- lhs: The IntegerArray to the left (inner).
- rhs: The IntegerArray to the right (outer).
kron(const RealArray lhs, const RealArray rhs) -> RealArray
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
kron(const BoolArray lhs, const BoolArray rhs) -> BoolArray
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
kron(const ComplexArray lhs, const ComplexArray rhs) -> ComplexArray
Computes the Kronecker product between two arrays or matrices. It is defined as
Parameters
- lhs: The ComplexArray to the left (inner).
- rhs: The ComplexArray to the right (outer).