Problem 498. Find the Kronecker Tensor Product without using KRON
Solution Stats
Problem Comments
-
4 Comments
the second test case misspelled assert and is missing a close parenthesis
Thanks, I have made the corrections.
To address the term: "without using KRON", may you please add this (or something similar) to the test suite: % Test for kron usage fid = fopen(which(), 'r'); c = onCleanup(@()fclose(fid)); tline = fgetl(fid); while ischar(tline), if strfind(tline,'kron'), error('Don''t use kron'); end tline = fgetl(fid); end ... This should work fine after you've renamed your function and iserted it in <...>.
Thanks, I applied your suggestion but with some syntactical changes. Code is fully tested now so 'kron' answers disallowed.
Solution Comments
Show commentsProblem Recent Solvers46
Suggested Problems
-
1212 Solvers
-
Convert hex color specification to MATLAB RGB
241 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
605 Solvers
-
How long do each of the stages of the rocket take to burn?
302 Solvers
-
Volume of a sphere given its surface area
148 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!