This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [12 4 7; 5 1 4];
y_correct = [7 4 12; 4 1 5];
assert(isequal(your_fcn_name(x),y_correct))
y =
7 4 12
4 1 5
|
2 | Pass |
%%
x = [12 4 7 8; 5 1 4 8];
y_correct = [8 4 7 12; 8 1 4 5];
assert(isequal(your_fcn_name(x),y_correct))
|
14334 Solvers
The Hitchhiker's Guide to MATLAB
2694 Solvers
Back to basics 3 - Temp Directory
277 Solvers
232 Solvers
Celsius to Fahrenheit converter
280 Solvers