Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x=[1 2];
y=1;
y_correct=[1 2];
assert(isequal(muldif(x,y),y_correct));
ans =
1 2
|
2 | Pass |
%%
x=1;
y=1;
y_correct=1;
assert(isequal(muldif(x,y),y_correct));
ans =
1
|
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))
ans =
8 21 11 10 5 1
|
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));
ans =
Columns 1 through 16
1 4 10 20 34 49 68 90 104 109 101 73 43 40 25 19
Column 17
10
|
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))
ans =
Columns 1 through 8
8 21 40 66 100 143 196 260
Columns 9 through 16
336 425 440 503 555 611 667 723
Columns 17 through 24
779 835 891 947 1003 1059 1090 1094
Columns 25 through 32
1070 1017 934 820 674 495 282 34
Columns 33 through 34
25 1
|
Sum of diagonal of a square matrix
1327 Solvers
413 Solvers
Create an n-by-n null matrix and fill with ones certain positions
269 Solvers
104 Solvers
103 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!