|
|
Divide
When applied to two numbers or two arrays of numbers, Divide produces the result of dividing the first number by the second or the component wise division of the two arrays, respectively. It has three variables: argument1, argument2 and result.
Structure (for scalars): argument1 / argument2 = result
Examples: 6 / 3 = 2 2 / 8 = 0.25 (6, 2) / (3, 8) = (2, 0.25)
Special compound model elements
|