Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 4 5 2 3];
y_correct = [5,3];
assert(isequal(max_ind_max(x),y_correct))
ans =
5 3
|
2 | Pass |
%%
x = [3.2 4.3 -9.8 4.7 -10.9 3.7 -2.5];
y_correct = [4.7,4];
assert(isequal(max_ind_max(x),y_correct))
ans =
4.7000 4.0000
|
Return a list sorted by number of occurrences
1225 Solvers
340 Solvers
Sum the elements in either diagonal of a square matrix
144 Solvers
1391 Solvers
construct matrix with identical rows
138 Solvers