This Challenge is to demonstrate usage of varargout.
Output a cell array using varargout of magic squares of size 1 thru n.
Input: n, Number of magic squares. Squares are of size 1:n
Output: m_out, a cell array of n magic arrays
n=3
m_out{1} = [1] ,
m_out{2)=[1 3;4 2];
m_out{3}=[8 1 6;3 5 7; 4 9 2]
This Challenge is based upon a varargout implementation in Alfonso Castanon's top entry in the Knot's Challenge, lasttry05
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers76
Suggested Problems
-
Find the sum of all the numbers of the input vector
54269 Solvers
-
Remove all the words that end with "ain"
2660 Solvers
-
2554 Solvers
-
Find out missing number from a vector of 9 elements
322 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
910 Solvers
More from this Author305
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!