Divide: Difference between revisions
Jump to navigation
Jump to search
DanHirschi (talk | contribs) m (fixed link text (added J links)) |
|||
Line 34: | Line 34: | ||
* [https://help.dyalog.com/latest/index.htm#Language/Primitive%20Functions/Divide.htm Dyalog] | * [https://help.dyalog.com/latest/index.htm#Language/Primitive%20Functions/Divide.htm Dyalog] | ||
* J [https://www.jsoftware.com/help/dictionary/d130.htm Dictionary], [https://code.jsoftware.com/wiki/Vocabulary/percent#dyadic NuVoc] | * J [https://www.jsoftware.com/help/dictionary/d130.htm Dictionary], [https://code.jsoftware.com/wiki/Vocabulary/percent#dyadic NuVoc] (as <source lang=j inline>%</source>) | ||
{{APL built-ins}}[[Category:Primitive functions]][[Category:Scalar dyadic functions]] | {{APL built-ins}}[[Category:Primitive functions]][[Category:Scalar dyadic functions]] |
Revision as of 05:10, 25 May 2021
- This page describes the dyadic arithmetic function. For reciprocal of a single argument, see Reciprocal.
÷
|
Divide (÷
) is a dyadic scalar function which gives the arithmetic ratio of its arguments. Divide shares the glyph ÷
with the monadic arithmetic function Reciprocal, and its result is the left argument divided by the right argument.
Examples
2 0 5÷4 0 2 0.5 1 2.5 3j1 2.5 4j5÷2 1j1 .2 1.5J0.5 1.25J¯1.25 20J25 ⎕DIV←1 ⍝ this sets division by 0 to always return 0 2 0 5÷4 0 0 0.5 0 0
Properties
Division is anti-commutative: swapping the arguments yield the reciprocal of the result.
Reduction and scan
Reduction with Division gives the alternating product.
See also
External links
Documentation
- Dyalog
- J Dictionary, NuVoc (as
%
)