function m = magic_sum(n)
t=magic(n)
m=sum(t(1:n));
end
temp=sum(magic(n),1); m=temp(1);
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = 15;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
n = 5;
y_correct = 65;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
n = 7;
y_correct = 175;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
n = 8;
y_correct = 260;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
n = 20;
y_correct = 4010;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
n = 100;
y_correct = 500050;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
n = 200;
y_correct = 4000100;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
n = 1000;
y_correct = 500000500;
assert(isequal(magic_sum(n),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magic_sum (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
405 Solvers
329 Solvers
Find the maximum number of decimal places in a set of numbers
740 Solvers
573 Solvers
307 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!