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))
|
Create a cell array out of a struct
507 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Who knows the last digit of pi?
557 Solvers
505 Solvers
548 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!