This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(3);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
2 | Pass |
%%
x = magic(7);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
3 | Pass |
%%
x = eye(7);
y_correct = false;
assert(isequal(magical(x),y_correct))
|
4 | Pass |
%%
x = magic(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
|
5 | Pass |
%%
x = magic(3)+1;
y_correct = false;
assert(isequal(magical(x),y_correct))
|
6 | Pass |
%%
x = flipud(magic(9));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
7 | Pass |
%%
x = fliplr(magic(11));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
8 | Pass |
%%
x = magic(4);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
9 | Pass |
%%
x = flipud(magic(8));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
10 | Pass |
%%
x = [1 2; 3 4];
y_correct = false;
assert(isequal(magical(x),y_correct))
|
11 | Fail |
%%
x = [1 2 3; 4 5 6];
y_correct = false;
assert(isequal(magical(x),y_correct))
Error: In an assignment A(I) = B, the number of elements in B and I must be the same.
|
Least common multiple of many numbers
189 Solvers
Arrange Vector in descending order
4083 Solvers
516 Solvers
205 Solvers
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!