Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1 -2 -3 -4];
y_correct = [1 2 3 4];
assert(isequal(absolute_elements(x),y_correct))
ans =
1 2 3 4
|
2 | Pass |
x = [-1 2 -3 3 4 -2 5 2];
y_correct = [1 2 3 3 4 2 5 2];
assert(isequal(absolute_elements(x),y_correct))
ans =
1 2 3 3 4 2 5 2
|
3 | Pass |
x = [-1.2 -2.6 -3.5 -4.8];
y_correct = [1.2 2.6 3.5 4.8];
assert(isequal(absolute_elements(x),y_correct))
ans =
1.2000 2.6000 3.5000 4.8000
|
306 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
324 Solvers
Is this triangle right-angled?
2394 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!