Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b =3;
y_correct = [1 10 100];
assert(isequal(your_fcn_name(a,b),y_correct))
|
2 | Pass |
a = 5;
b =1;
y_correct = [5];
assert(isequal(your_fcn_name(a,b),y_correct))
|
3 | Pass |
a = 7;
b =6;
y_correct = [7 70 700 7000 70000 700000]
assert(isequal(your_fcn_name(a,b),y_correct))
y_correct =
7 70 700 7000 70000 700000
|
272 Solvers
220 Solvers
188 Solvers
273 Solvers
Is this triangle right-angled?
2396 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!