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))
|
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))
|
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))
|
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Sum of odd numbers in a matrix
311 Solvers
Find out total non zero element of matrix
193 Solvers
Matlab Basics II - Velocity of a particle
138 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!