Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 6.61;
assert(isequal(kg_to_lbs(x),y_correct))
y =
6.6100
|
2 | Pass |
x = 6.7;
y_correct = 14.77;
assert(isequal(kg_to_lbs(x),y_correct))
y =
14.7700
|
3 | Pass |
x = -2; %% I know not physically possible!
y_correct = -4.41;
assert(isequal(kg_to_lbs(x),y_correct))
y =
-4.4100
|
1309 Solvers
Return unique values without sorting
588 Solvers
Generate a string like abbcccddddeeeee
234 Solvers
Celsius to Fahrenheit converter
388 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!