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 = [2 5 2 5 12 2 4 13];
y_correct = 8;
assert(isequal(maxindex(x),y_correct))
|
2 | Pass |
x = [2 4 3 5 5 3];
y_correct = 4;
assert(isequal(maxindex(x),y_correct))
|
8420 Solvers
Back to basics 23 - Triangular matrix
534 Solvers
Create a square matrix of multiples
330 Solvers
272 Solvers
Matlab Basics - Pick out parts of a vector
149 Solvers