Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 -2 1];
y_correct = [1;1];
assert(isequal(solvepol(x),y_correct))
y =
1
1
|
2 | Pass |
x = [1 -3 2];
y_correct = [2;1];
assert(isequal(solvepol(x),y_correct))
y =
2
1
|
Determine whether a vector is monotonically increasing
11917 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3613 Solvers
Determine the length of a string of characters
171 Solvers
151 Solvers
80 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!