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))
|
193 Solvers
Calculate the area of a triangle between three points
281 Solvers
221 Solvers
Replace multiples of 5 with NaN
282 Solvers
Determine the length of a string of characters
122 Solvers