Each element of the result is the quotient of the corresponding elements of the input arguments. If the division for a particular element is invalid (division by zero), then this element is marked as invalid in the result array.
arg1 | 5 | 4 | 28 | 6 | 10 |
result | 2.5 | 2 | 14 | 3 | 5 |
arg1 | 5 | 4 | 28 | 6 | 10 |
arg2 | 5 | 0 | 7 | 3 | 4 |
result | 1 | DBNull.Value (Empty Data Point) |
4 | 2 | 2.5 |
Windows Forms: All Examples\Data Manipulation\Functions\Statistical\Basic Functions