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))
ans =
50 210
|
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))
ans =
1 1 1
|
3 | Pass |
x = [1 2];
y=[1 2];
z=[1 2];
y_correct = [1 8];
assert(isequal(vec_mul(x,y,z),y_correct))
ans =
1 8
|
4 | Pass |
x = 1;
y=1;
z=1;
y_correct = 1;
assert(isequal(vec_mul(x,y,z),y_correct))
ans =
1
|
Return the 3n+1 sequence for n
6170 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
188 Solvers
Create an index-powered vector
353 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!