ABS (matrix);
The ABS function returns the absolute value of every element of the argument matrix, as shown in the following statements:
x = -2:2; a = abs(x); print a;
Figure 24.33: Absolute Values