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))
m =
5
i =
3
out =
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))
m =
4.7000
i =
4
out =
4.7000 4.0000
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
746 Solvers
Fahrenheit to Celsius converter
358 Solvers
485 Solvers
Find out value of sine given by degree.
231 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!