Arbortext IsoDraw > Macro Language Reference > Functions and Data Types > Functions > Other Mathematical Functions
  
Other Mathematical Functions
The following mathematical functions are defined:
sqrt (source)
square root
ln (source)
natural logarithm
exp (source)
exponential function
abs (source)
absolute value
MACRO logplot
DEFINE i AS integer
FOR i=1 to 300
CREATE LINE i 0 i ln(i)*20
END FOR
END MACRO