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))
|
2 | Pass |
x = ones(3);
z=magic(3);
y_correct = [8 5 2];
assert(isequal(your_fcn_name(x,z),y_correct))
|
3375 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Getting the row and column location from a matrix
236 Solvers
347 Solvers
139 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!