Uses of Class
com.japisoft.formula.lib.Function

Packages that use Function
com.japisoft.formula.lib   
com.japisoft.formula.lib.standard   
com.japisoft.formula.lib.standard.str   
 

Uses of Function in com.japisoft.formula.lib
 

Methods in com.japisoft.formula.lib that return Function
 Function[] AbstractLib.getFunctions()
           
 Function[] Lib.getFunctions()
           
 

Methods in com.japisoft.formula.lib with parameters of type Function
 void AbstractLib.install(Function function)
          Install a new function evaluation
 void AbstractLib.uninstall(Function function)
           
 

Constructors in com.japisoft.formula.lib with parameters of type Function
FunctionException(Function f, java.lang.String comment)
           
 

Uses of Function in com.japisoft.formula.lib.standard
 

Subclasses of Function in com.japisoft.formula.lib.standard
 class AbsFunction
          Compute the absolute result More information at : http://www.japisoft.com
 class AbstractFunction
          Facilities for the standard library More information at : http://www.japisoft.com
 class AcosFunction
          Compute the arc cosine with a radian value More information at : http://www.japisoft.com
 class AsinFunction
          Compute the arc sine with a radian value More information at : http://www.japisoft.com
 class AtanFunction
          Compute the arc tan More information at : http://www.japisoft.com
 class AvgFunction
          Compute the average of the values More information at : http://www.japisoft.com
 class CosFunction
          Compute a cosine with a radian value More information at : http://www.japisoft.com
 class DegToRad
          Convert angle in degrees to radians More information at : http://www.japisoft.com
 class ExpFunction
          Compute the euler's number e raised to the power of the argument More information at : http://www.japisoft.com
 class IntFunction
          Compute an integer from a double More information at : http://www.japisoft.com
 class Log10Function
          Compute the natural logarithm in 10 base More information at : http://www.japisoft.com
 class LogFunction
          Compute the natural logarithm in e base More information at : http://www.japisoft.com
 class LognFunction
          Compute the natural logarithm in n base : Logn( BASE, value ) More information at : http://www.japisoft.com
 class MaxFunction
          Compute the max values More information at : http://www.japisoft.com
 class MinFunction
          Compute the min values More information at : http://www.japisoft.com
 class Pow
          Power More information at : http://www.japisoft.com
 class ProdFunction
          Compute the product values More information at : http://www.japisoft.com
 class RadToDeg
          Convert angle in radians to degrees More information at : http://www.japisoft.com
 class RandomFunction
          Compute a random value from 0 to 1 More information at : http://www.japisoft.com
 class SinFunction
          Compute a sine with a radian value More information at : http://www.japisoft.com
 class SqrtFunction
          Compute a square root More information at : http://www.japisoft.com
 class SumFunction
          Compute the sum values More information at : http://www.japisoft.com
 class TanFunction
          Compute a tangent with a radian value More information at : http://www.japisoft.com
 

Uses of Function in com.japisoft.formula.lib.standard.str
 

Subclasses of Function in com.japisoft.formula.lib.standard.str
 class Strcontains
          strcontains( a, b ) return true if 'a' contains the string 'b' More information at : http://www.japisoft.com
 class Strget
          Extract a substring : strget : String, Start position from 1, End position starting from 1.
 class Strlen
          Return a length for a string More information at : http://www.japisoft.com