Content deleted Content added
No edit summary Tag: Reverted |
m →Default left argument: clean up |
||
Line 94:
The significance of this function can be seen as follows:
{{
Moreover, analogous to that monadic {{code|-⍵|apl}} ⇔ {{code|0-⍵|apl}} (''negate'') and monadic {{code|÷⍵|apl}} ⇔ {{code|1÷⍵|apl}} (''reciprocal''), a monadic definition of the function is useful, effected by specifying a default value of 0 for {{code|⍺|apl}}: if {{code|j←{⍺←0 ⋄ ⍺+0j1×⍵}|apl}}, then {{code|j ⍵|apl}} ⇔ {{code|0 j ⍵|apl}} ⇔ {{code|0+0j1×⍵|apl}}.
|