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 | Fail |
%%
tC = 1;
tK_correct = 274;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
Error: Undefined function 'celsius_to_kelvin' for input arguments of type 'double'.
|
2 | Fail |
%%
tC = -273;
tK_correct = 0;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
Error: Undefined function 'celsius_to_kelvin' for input arguments of type 'double'.
|
3 | Fail |
%%
tC = 100;
tK_correct = 373;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
Error: Undefined function 'celsius_to_kelvin' for input arguments of type 'double'.
|
3075 Solvers
Compute a dot product of two vectors x and y
750 Solvers
669 Solvers
302 Solvers
485 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!