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))
C =
23.8889 27.7778 36.1111 18.3333
23.8889 27.7778 36.1111 18.3333
|
2 | Pass |
F = [];
C_correct = [];
assert(all(abs(temp_convert(F) - C_correct) < 1e-4))
C =
[]
|
3 | Pass |
F = [-1; 1200];
C_correct = [-18.3333;648.8889];
assert(all(abs(temp_convert(F) - C_correct) < 1e-4))
C =
-18.3333
648.8889
-18.3333
648.8889
|
Find state names that end with the letter A
708 Solvers
Renaming a field in a structure array
731 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
413 Solvers
Is this triangle right-angled?
2394 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!