Man Scilab

abs
Scilab Function

abs - absolute value, magnitude

Calling Sequence

t=abs(x)

Parameters

Description

abs(x) is the absolute value of the elements of x . When x is complex, abs(x) is the complex modulus (magnitude) of the elements of x .

Examples


abs([1,%i,-1,-%i,1+%i])
 
  

Back