Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test #1
tt=18; rate1=3; rate2=2;
y_correct =[12,4,2];
assert(isequal(rocketburntime(tt,rate1,rate2),y_correct))
|
2 | Pass |
%% test #2
tt=32; rate1=4; rate2=3;
y_correct =[24,6,2];
assert(isequal(rocketburntime(tt,rate1,rate2),y_correct))
|
3 | Pass |
%% test #3
tt=58; rate1=6; rate2=4;
y_correct =[48,8,2];
assert(isequal(rocketburntime(tt,rate1,rate2),y_correct))
|
235 Solvers
Back to basics 25 - Valid variable names
293 Solvers
351 Solvers
413 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!