Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 10234;
y_correct = '10000+200+30+4';
assert(strcmp(extended_form(x),y_correct))
x =
1 0 2 3 4
|
2 | Pass |
x=987654321;
y_correct='900000000+80000000+7000000+600000+50000+4000+300+20+1';
assert(strcmp(extended_form(x),y_correct))
x =
9 8 7 6 5 4 3 2 1
|
3 | Pass |
x = 1000;
y_correct = '1000';
assert(strcmp(extended_form(x),y_correct))
x =
1 0 0 0
|
4 | Pass |
x = 314159265358979;
y_correct = '300000000000000+10000000000000+4000000000000+100000000000+50000000000+9000000000+200000000+60000000+5000000+300000+50000+8000+900+70+9';
assert(strcmp(extended_form(x),y_correct))
x =
3 1 4 1 5 9 2 6 5 3 5 8 9 7 9
|
5 | Pass |
x=540200;
y_correct='500000+40000+200';
assert(strcmp(extended_form(x),y_correct))
x =
5 4 0 2 0 0
|
How to find the position of an element in a vector without using the find function
2477 Solvers
620 Solvers
Put two time series onto the same time basis
174 Solvers
184 Solvers
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!