Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 6.61;
assert(isequal(kg_to_lbs(x),y_correct))
ans =
[]
|
2 | Pass |
x = 6.7;
y_correct = 14.77;
assert(isequal(kg_to_lbs(x),y_correct))
ans =
[]
|
3 | Pass |
x = -2; %% I know not physically possible!
y_correct = -4.41;
assert(isequal(kg_to_lbs(x),y_correct))
ans =
[]
|
1262 Solvers
Getting the indices from a vector
3212 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
Rounding off numbers to n decimals
1051 Solvers
Matlab Basics II - Log and natural log
136 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!