Arithmetic
The Arithmetic menu provides access to functions that perform an arithmetic calculation. They perform arithmetic on the inputs to determine the value of an output.
For more information, see the topics that are listed in the gray footer section at the bottom of this topic. Select the relevant entry to display the topic that you require.
When using arithmetic functions in ST Programs, you should use the available operators when performing a function on 2 values. For example, Output := Input 1 + Input 2 is more efficient than Output := Add (Input 1, Input 2). However, for functions that have multiple arguments, you should use the comma separated format, for example, Output := Add (Input 1, Input 2, Input 3, Input 4).