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 = [1 2 -12];
y_correct = -12;
assert(isequal(signed_mag(x),y_correct))
|
2 | Pass |
%%
x = [1 10 20];
y_correct = 20;
assert(isequal(signed_mag(x),y_correct))
|
3 | Pass |
%%
x = [0 0.1 -0.2];
y_correct = -0.2;
assert(isequal(signed_mag(x),y_correct))
|
3074 Solvers
1263 Solvers
Flip the main diagonal of a matrix
506 Solvers
118 Solvers
1096 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!