There are, here at Cody, a lot of people who can code very well on Matlab. But I find that every one who publish a problem should have the humility to wait for many solvers before he/she put his/her own solution. But that's only my personal opinion. ;-)
J.R.!
You can't see my solution until u make working one with the same size, so I think it doesn't matter.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 3;
y_correct = 3;
assert(isequal(divby3_vector(x),y_correct))
|
2 | Pass |
%%
x = 7;
y_correct = [6 3];
assert(isequal(divby3_vector(x),y_correct))
|
3 | Pass |
%%
x = -16;
y_correct = [-15 -12 -9 -6 -3];
assert(isequal(divby3_vector(x),y_correct))
|
4 | Pass |
%%
x = -200;
y_correct = [-198 -195 -192 -189 -186 -183 -180 -177 -174 -171 -168 -165 -162 -159 -156 -153 -150 -147 -144 -141 -138 -135 -132 -129 -126 -123 -120 -117 -114 -111 -108 -105 -102 -99 -96 -93 -90 -87 -84 -81 -78 -75 -72 -69 -66 -63 -60 -57 -54 -51 -48 -45 -42 -39 -36 -33 -30 -27 -24 -21 -18 -15 -12 -9 -6 -3];
assert(isequal(divby3_vector(x),y_correct))
|
5 | Pass |
%%
x = 50;
y_correct = [48 45 42 39 36 33 30 27 24 21 18 15 12 9 6 3];
assert(isequal(divby3_vector(x),y_correct))
|
Remove any row in which a NaN appears
6827 Solvers
2811 Solvers
Number of digits in an integer
336 Solvers
2314 Solvers
Create sequnce 1 4 9 16 25.........
190 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!