Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1 2 -3;
4 -5 6;
7 -8 -9];
y_correct = [0 1 0;
1 0 1;
1 0 0];
assert(isequal(your_fcn_name(x),y_correct))
x =
0 2 0
4 0 6
7 0 0
x =
0 1 0
1 0 1
1 0 0
y =
0 1 0
1 0 1
1 0 0
|
Given a 4x4 matrix, swap the two middle columns
516 Solvers
349 Solvers
Matlab Basics II - Create a vector with a repeated entry
182 Solvers
353 Solvers
92 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!