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))
mm =
2 12
|
2 | Pass |
%%
x = [1 10 20];
y_correct = 20;
assert(isequal(signed_mag(x),y_correct))
mm =
20 -1
|
3 | Pass |
%%
x = [0 0.1 -0.2];
y_correct = -0.2;
assert(isequal(signed_mag(x),y_correct))
mm =
0.1000 0.2000
|
54311 Solvers
Back to basics 9 - Indexed References
392 Solvers
272 Solvers
07 - Common functions and indexing 6
348 Solvers
Let's get back to school, and create multiplication tables
147 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!