Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [7 10 6 4];
y_correct = 9;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3 2];
y_correct = 3;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = -5:5:30;
y_correct = 35;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = [45 -16 34 19 120];
y_correct = 227;
assert(isequal(your_fcn_name(x),y_correct))
|
Omit columns averages from a matrix
527 Solvers
Getting the indices from a vector
3206 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3612 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Convert from Fahrenheit to Celsius
7133 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!