Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 20;
v = 25
y_correct = 6250;
assert(isequal(kinetic_energy(m,v),y_correct))
v =
25
y =
6250
|
2 | Pass |
m = 1;
v = 4;
y_correct = 8;
assert(isequal(kinetic_energy(m,v),y_correct))
y =
8
|
3 | Pass |
m = 6;
v = 9;
y_correct = 243;
assert(isequal(kinetic_energy(m,v),y_correct))
y =
243
|
1962 Solvers
216 Solvers
119 Solvers
241 Solvers
149 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!