Math

You can perform a range of math operations including addition, subtraction, multiplication, rounding, and more.

Absolute

You can fetch the absolute value of a number.

The input field is as follows:

Number
The number of which absolute value you want to fetch.

Example - If the specified number is -4, the Absolute operation returns 4.

Division

You can fetch the result of the division of two numbers.

The input fields are as follows:

Number 1
The number to be divided.
Number 2
The number to be divided by.
Precision
Specify the decimal precisions for float values.

Example - If Number 1 is 200, Number 2 is 3, and Precision is 4, the Division operation returns 66.6667.

Max

You can fetch the highest element from the array.

The input field is as follows:

Numbers Array
The number array from which you want to fetch the highest element.

Example - If Number Array is [1,2,3,4,5], the Max operation returns 5.

Min

You can fetch the lowest element from the array.

The input field is as follows:

Numbers Array
The number array from which you want to fetch the lowest element.

Example - If Number Array is [1,2,3,4,5], the Min operation returns 1.

Multiply

You can multiply two or more numbers.

The input fields are as follows: Input Fields

Number
Numbers you want to multiply. Click + to add more numbers.
Precision
Specify the decimal precisions for float values.

Example - If the first Number is 3.5, the second number is 7.6, and the third number is 99.45, the Multiply operation returns 2645.370.

Multiply List Values

You can multiply all elements of the array.

The input field is as follows:
Numbers Array
An array that contains the elements that you want to multiply.
Precision
Specify the decimal precisions for float values.

Example - If the Number Array is [1,2,3,4,5], the Multiply List Values operation returns 120.00.

Random

You can generate a random number. You can generate a random number.

The input fields are as follows:
Minimum Limit
The lowest value in the range for the random number.
Maximum Limit
The highest value in the range for the random number.
Precision
The decimal precision for generating float values.

Round Number

Rounds the specified number.

The input fields are as follows:
Number
The number to be rounded.
Precision
The decimal precision for rounding the number.
Rounding Modes
The direction mode for rounding the number.

Example - If you specify the Number as 12.25 and set the Rounding Mode to down, the Round Number operation returns 12.

Subtract

You can subtract two numbers.

The input fields are as follows:
Number 1
First number for subtraction operation.
Number 2
Second number for subtraction operation.
Precision
The decimal precision for float values.

Example - If you specify Number 1 as 10 and Number 2 as 5, the Subtract operation returns 5.

Sum

You can add two or more numbers.

The input fields are as follows:

Number 1
First number for add operation.
Number 2
Second number for add operation.

If you want to add more than two numbers, click + to add another Number field.

Precision
The decimal precision for float values.

Example - If you specify Number 1 as 10 and Number 2 as 5, the Sum operation returns 15.

Sum List Values

You can fetch the sum of all elements of the array.

The input fields are as follows:

Numbers Array
An array that contains the elements that you want to add.
Precision
The decimal precision for float values.

Example - If the array is [1,2,3,4,5], the Sum List Values operation returns 15.