Sum (float)

Parent Previous Next

Sum (float)

Function to sum float values.


Syntax:

float Sum(float a, float b):


Params:

Float a: The float parameter to sum.

Float b: The float parameter to sum.    


Return:

Float: The function returns a float result of sum.


Example:

In this example, you can configure a float sum, in two forms:

  


   SVMath.Sum(@TagFloat1, @TagFloat2);

or

   SVMath.Sum(1.3, 2.7);