This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
F = 0;
y_correct = -17.77777777;
assert(abs(far2cel(F)-y_correct)<1e-6);
|
2 | Pass |
F = 212;
y_correct = 100;
assert(abs(far2cel(F)-y_correct)<1e-6);
|
3 | Pass |
F = -40;
y_correct = -40;
assert(abs(far2cel(F)-y_correct)<1e-6);
|
4 | Pass |
F = 98.5;
y_correct = 36.94444444444;
assert(abs(far2cel(F)-y_correct)<1e-6);
|
Matrix indexing with two vectors of indices
404 Solvers
328 Solvers
192 Solvers
Matlab Basics - y as a function of x
241 Solvers
480 Solvers