This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(5);
y_correct = 25;
assert(isequal(your_fcn_name(x),y_correct))
t =
5
s =
5
ans =
24
ans =
24 23
ans =
24 23 22
ans =
24 23 22 21
ans =
24 23 22 21 25
y =
25
|
2 | Pass |
%%
x = [2 4 9 0 7 19;3 4 1 2 0 6];
y_correct = 19;
assert(isequal(your_fcn_name(x),y_correct))
t =
2
s =
6
ans =
19
ans =
19 6
y =
19
|
3 | Pass |
%%
x = [2 4 9 0 7 19;3 4 1 2 0 6]';
y_correct = 19;
assert(isequal(your_fcn_name(x),y_correct))
t =
6
s =
2
ans =
3
ans =
3 4
ans =
3 4 9
ans =
3 4 9 2
ans =
3 4 9 2 7
ans =
3 4 9 2 7 19
y =
19
|
Determine whether a vector is monotonically increasing
11917 Solvers
Remove any row in which a NaN appears
6827 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
462 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!