Returns the absolute value of the argument. For a complex argument, it returns the value corresponding to the vector's length.
 
    abs(-4) 
     abs(4)  
     abs([ 4, -4 ]) 
     abs( 3-2*j ) 
  
This results in: 
 
     4    
   4    
   4    4    
   3.6056