Kronecker product: Difference between revisions

m
→‎{{header|Factor}}: update to the new matrix vocabulary
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
m (→‎{{header|Factor}}: update to the new matrix vocabulary)
Line 954:
 
=={{header|Factor}}==
{{works with|Factor|0.99 2020-01-23}}
<lang factor>USING: kernel math.matrices.extras prettyprint ;
IN: rosetta-code.kronecker
 
{ { 1 2 } { 3 4 } }
Line 961:
{ { 0 1 0 } { 1 1 1 } { 0 1 0 } }
{ { 1 1 1 1 } { 1 0 0 1 } { 1 1 1 1 } }
[ kronkronecker-product . ] 2bi@</lang>
{{out}}
<pre>
1,808

edits