This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
base = 10;
y_correct = 0;
assert(isequal(your_fcn_name(x,base),y_correct))
y =
0
|
2 | Pass |
x = 4;
base = 2;
y_correct = 2;
assert(isequal(your_fcn_name(x,base),y_correct))
y =
0
x =
2
y =
1
x =
1
y =
2
|
9819 Solvers
Duplicate each element of a vector.
518 Solvers
Replace multiples of 5 with NaN
358 Solvers
Create matrix of replicated elements
321 Solvers
115 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!