B = A;
B(:,[1 end]) = A(:,[end 1]);
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [ 12 4 7
5 1 4];
B_correct = [ 7 4 12
4 1 5 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In swap_ends (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
A = [ 12 7
5 4];
B_correct = [ 7 12
4 5 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In swap_ends (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
A = [ 1 5 0 2 3 ];
B_correct = [ 3 5 0 2 1 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In swap_ends (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
A = 1;
B_correct = 1;
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In swap_ends (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Piecewise linear interpolation
299 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
512 Solvers
489 Solvers
241 Solvers
1174 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!