I have looked through the GAUSS command reference, but cannot find a function to calculate the Kronecker product of two matrices. Is there a function for this?
1 Answer
0
In GAUSS you can calculate the Kronecker product with the .*. operator like this:
A = rndn(3, 3);
B = eye(3);
C = A .*. B;
Now 'C' will be the Kronecker product of 'A' and 'B'.
Your Answer
1 Answer
0
In GAUSS you can calculate the Kronecker product with the .*. operator like this:
A = rndn(3, 3);
B = eye(3);
C = A .*. B;
Now 'C' will be the Kronecker product of 'A' and 'B'.