Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
t1=1; r=1; n=7;
y_correct = 7;
assert(isequal(your_fcn_name(t1,r,n),y_correct))
|
2 | Pass |
%%
t1=10; r=10; n=5;
y_correct = 111110;
assert(isequal(your_fcn_name(t1,r,n),y_correct))
|
3 | Pass |
%%
t1=7; r=3; n=5;
y_correct = 847;
assert(isequal(your_fcn_name(t1,r,n),y_correct))
|
188 Solvers
Back to basics 2 - Function Path
163 Solvers
Create a Multiplication table matrix...
281 Solvers
find the maximum element of the matrix
348 Solvers
641 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!