MULTIPLYBY(By,OtherArguments)
where
- is the number to be multiplied by
- is the number of array of numbers with which multiplication is to be carried out.
Description
- This function calculates the multiplication of number with each given number from the array.
- Multiplication is one of the four basic operations of arithmetic.
- Multiplication is adding equal parts or groups.
- Multiplication is the repeated addition and it is the opposite of Division.
Examples
- MULTIPLYBY(3,2.5) = 7.5
- MULTIPLYBY(-7,20) = -140
- MULTIPLYBY(2,[5,3,9]) =
- MULTIPLYBY(4,[1..4]) =
- A= 5 ; MULTIPLYBY(A,6) = 30
See Also
References