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);
|
Back to basics 23 - Triangular matrix
634 Solvers
Determine the number of odd integers in a vector
435 Solvers
07 - Common functions and indexing 1
338 Solvers
167 Solvers
405 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!