Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 50;
y_correct = 55;
assert(isequal(your_fcn_name(x),y_correct))
ans =
55.0000
|
2 | Pass |
x = 500;
y_correct = 550;
assert(isequal(your_fcn_name(x),y_correct))
ans =
550
|
3 | Fail |
x = 100;
y_correct = 110;
assert(isequal(your_fcn_name(x),y_correct))
ans =
110.0000
|
Determine whether a vector is monotonically increasing
11920 Solvers
2183 Solvers
Compute a dot product of two vectors x and y
750 Solvers
184 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!