Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 3;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 2;
y_correct = 14;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 10;
y_correct = 1110;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 13;
y_correct = 2379;
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Pass |
x = 99;
y_correct = 980199;
assert(isequal(your_fcn_name(x),y_correct))
|
The Answer to Life, the Universe, and Everything
383 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Create matrix of replicated elements
321 Solvers
Basics: Divide integers to get integer outputs in all cases
111 Solvers
calculate linear convolution two vectors
110 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!