This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Nice trick to sidestep intended solution!
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [0 1 2];
s = [1 2 3];
y_correct = [3 6 11];
assert(isequal(parabola_equation(A,s),y_correct))
|
2 | Pass |
A = -12:4:11;
s = [-5 -8 0];
y_correct = [-624 -256 -48 0 -112 -384];
assert(isequal(parabola_equation(A,s),y_correct))
|
3 | Pass |
A = -2:2;
s = [0 pi 0];
y_correct = [-2*pi -pi 0 pi 2*pi];
assert(isequal(parabola_equation(A,s),y_correct))
|
4 | Pass |
assert(isempty(regexp(evalc('type parabola_equation'),'(eval|for|while|)')))
|
5 | Pass |
assert(not(isempty(regexp(evalc('type parabola_equation'),'(@)'))))
|
6 | Pass |
assert(not(isempty(regexp(evalc('type parabola_equation'),'arrayfun'))))
|
Determine whether a vector is monotonically increasing
11924 Solvers
9873 Solvers
3238 Solvers
1223 Solvers
Unique values without using UNIQUE function
171 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!