Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
F = [75 82 97 65];
C_correct = [23.8889 27.7778 36.1111 18.3333];
assert(all(abs(temp_convert(F) - C_correct) < 1e-4))
|
2 | Pass |
F = [];
C_correct = [];
assert(all(abs(temp_convert(F) - C_correct) < 1e-4))
|
3 | Pass |
F = [-1; 1200];
C_correct = [-18.3333;648.8889];
assert(all(abs(temp_convert(F) - C_correct) < 1e-4))
|
Return the largest number that is adjacent to a zero
3751 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
Determine the number of odd integers in a vector
435 Solvers
Find the dimensions of a matrix
373 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!