Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = ones(3);
z=zeros(3);
y_correct = [0 0 0];
assert(isequal(your_fcn_name(x,z),y_correct))
out =
0
0
0
out =
0 0 0
|
2 | Pass |
x = ones(3);
z=magic(3);
y_correct = [8 5 2];
assert(isequal(your_fcn_name(x,z),y_correct))
out =
8
5
2
out =
8 5 2
|
6723 Solvers
Return the first and last character of a string
3454 Solvers
413 Solvers
372 Solvers
If you have matrix A, create matrix B using matrix A as an "element"
87 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!