Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x=[1 2];
y=1;
y_correct=[1 2];
assert(isequal(muldif(x,y),y_correct));
|
2 | Pass |
%%
x=1;
y=1;
y_correct=1;
assert(isequal(muldif(x,y),y_correct));
|
3 | Pass |
%%
x=[1 2 0 1];
y=[8 5 1];
y_correct = [8 21 11 10 5 1];
assert(isequal(muldif(x,y),y_correct))
|
4 | Pass |
%%
x=[1 2 3 4 4 1 2 1 1 1];
y=[1 2 3 4 5 6 9 10];
y_correct=[1 4 10 20 34 49 68 90 104 109 101 73 43 40 25 19 10];
assert(isequal(muldif(x,y),y_correct));
|
5 | Pass |
%%
x=[1:10 0 1];
y=[8 5:1:25 1];
y_correct = [8 21 40 66 100 143 196 260 336 425 440 503 555 611 667 723 779 835 891 947 1003 1059 1090 1094 1070 1017 934 820 674 495 282 34 25 1
];
assert(isequal(muldif(x,y),y_correct))
|
Sum all integers from 1 to 2^n
8411 Solvers
Remove the two elements next to NaN value
411 Solvers
Given a 4x4 matrix, swap the two middle columns
515 Solvers
462 Solvers
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!