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 |
%%
tC = 1;
tK_correct = 274;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
ans =
274
|
2 | Pass |
%%
tC = -273;
tK_correct = 0;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
ans =
0
|
3 | Pass |
%%
tC = 100;
tK_correct = 373;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
ans =
373
|
1786 Solvers
649 Solvers
631 Solvers
245 Solvers
Test Problem; Create a 5x5 array containing all ones
198 Solvers