This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 4;
y_correct = [ 1 4 9 16 ];
assert(isequal(squares(x),y_correct))
n =
1 2 3 4
|
2 | Pass |
%%
x = 1;
y_correct = [ 1 ];
assert(isequal(squares(x),y_correct))
n =
1
|
3 | Pass |
%%
x = 10;
y_correct = [ 1 4 9 16 25 36 49 64 81 100 ];
assert(isequal(squares(x),y_correct))
n =
1 2 3 4 5 6 7 8 9 10
|
Remove any row in which a NaN appears
5972 Solvers
649 Solvers
Change the sign of even index entries of the reversed vector
212 Solvers
Simple equation: Annual salary
3402 Solvers
572 Solvers