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
|
2 | Pass |
m = 1;
v = 4;
y_correct = 8;
assert(isequal(kinetic_energy(m,v),y_correct))
|
3 | Pass |
m = 6;
v = 9;
y_correct = 243;
assert(isequal(kinetic_energy(m,v),y_correct))
|
386 Solvers
Do Fast Fourier Transformation
221 Solvers
5111 Solvers
525 Solvers
147 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!