ABS (matrix) ;
ABS
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 23.32: Absolute Values