This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(4);
y_correct = [34;34;34;34]
assert(isequal(your_fcn_name(x),y_correct))
y_correct =
34
34
34
34
ans =
34
34
34
34
|
2 | Pass |
x = pascal(7);
y_correct =[7;28;84;210;462;924;1716];
assert(isequal(your_fcn_name(x),y_correct))
ans =
7
28
84
210
462
924
1716
|
3 | Pass |
x = [5 -1 7 5;3 10 23 5;0 -3 7 5]
y_correct =[16;41;9];
assert(isequal(your_fcn_name(x),y_correct))
x =
5 -1 7 5
3 10 23 5
0 -3 7 5
ans =
16
41
9
|
1882 Solvers
Getting the indices from a vector
3206 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
212 Solvers
134 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!