Does GAUSS have a function to calculate the Kronecker product?

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'.

aptech

1,773

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'.


You must login to post answers.

Have a Specific Question?

Get a real answer from a real person

Need Support?

Get help from our friendly experts.

Try GAUSS for 14 days for FREE

See what GAUSS can do for your data

© Aptech Systems, Inc. All rights reserved.

Privacy Policy