Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[2 5];
y=[5 6];
z=[5 7];
y_correct = [ 50 210];
assert(isequal(vec_mul(x,y,z),y_correct))
|
2 | Pass |
x = [1 1 1 ];
y=[1 1 1 ];
z=[1 1 1];
y_correct = [1 1 1];
assert(isequal(vec_mul(x,y,z),y_correct))
|
3 | Pass |
x = [1 2];
y=[1 2];
z=[1 2];
y_correct = [1 8];
assert(isequal(vec_mul(x,y,z),y_correct))
|
4 | Pass |
x = 1;
y=1;
z=1;
y_correct = 1;
assert(isequal(vec_mul(x,y,z),y_correct))
|
Sum the 'edge' values of a matrix
232 Solvers
353 Solvers
299 Solvers
555 Solvers
471 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!