Direct function

Last updated

A direct function (dfn, pronounced "dee fun") is an alternative way to define a function and operator (a higher-order function) in the programming language APL. A direct operator can also be called a dop (pronounced "dee op"). They were invented by John Scholes in 1996. [1] They are a unique combination of array programming, higher-order function, and functional programming, and are a major distinguishing advance of early 21st century APL over prior versions.

Contents

A dfn is a sequence of possibly guarded expressions (or just a guard) between { and }, separated by or new-lines, wherein denotes the left argument and the right, and denotes recursion (function self-reference). For example, the function PT tests whether each row of is a Pythagorean triplet (by testing whether the sum of squares equals twice the square of the maximum).

PT{(+/*2)=2×(/)*2}PT3451x453311651312171681112417158PTx101001

The factorial function as a dfn:

fact{0=⍵:1×-1}fact5120fact¨10⍝ fact applied to each element of 0 to 9112624120720504040320362880

Description

The rules for dfns are summarized by the following "reference card": [2]

{function}{⍺⍺operator⍵⍵}:   guard
  left argument⍺⍺  left operand::  error-guard
  right argument⍵⍵  right operand  default left argument 
  self-reference  ∇∇  self-reference  s  shy result

A dfn is a sequence of possibly guarded expressions (or just a guard) between { and }, separated by or new-lines.

expressionguard:expressionguard:

The expressions and/or guards are evaluated in sequence. A guard must evaluate to a 0 or 1; its associated expression is evaluated if the value is 1. A dfn terminates after the first unguarded expression which does not end in assignment, or after the first guarded expression whose guard evaluates to 1, or if there are no more expressions. The result of a dfn is that of the last evaluated expression. If that last evaluated expression ends in assignment, the result is "shy"—not automatically displayed in the session.

Names assigned in a dfn are local by default, with lexical scope.

denotes the left function argument and the right; ⍺⍺ denotes the left operand and ⍵⍵ the right. If ⍵⍵ occurs in the definition, then the dfn is a dyadic operator; if only ⍺⍺ occurs but not ⍵⍵, then it is a monadic operator; if neither ⍺⍺ or ⍵⍵ occurs, then the dfn is a function.

The special syntax expression is used to give a default value to the left argument if a dfn is called monadically, that is, called with no left argument. The expression is not evaluated otherwise.

denotes recursion or self-reference by the function, and ∇∇ denotes self-reference by the operator. Such denotation permits anonymous recursion.

Error trapping is provided through error-guards, errnums::expression. When an error is generated, the system searches dynamically through the calling functions for an error-guard that matches the error. If one is found, the execution environment is unwound to its state immediately prior to the error-guard's execution and the associated expression of the error-guard is evaluated as the result of the dfn.

Additional descriptions, explanations, and tutorials on dfns are available in the cited articles. [3] [4] [5] [6] [7]

Examples

The examples here illustrate different aspects of dfns. Additional examples are found in the cited articles. [8] [9] [10]

Default left argument

The function {+0j1×} adds to 0j1 (i or ) times .

3{+0j1×}43J4∘.{+0j1×}¯2+⍳5¯2J¯2¯2J¯1¯2¯2J1¯2J2¯1J¯2¯1J¯1¯1¯1J1¯1J20J¯20J¯100J10J21J¯21J¯111J11J22J¯22J¯122J12J2

The significance of this function can be seen as follows:

Complex numbers can be constructed as ordered pairs of real numbers, similar to how integers can be constructed as ordered pairs of natural numbers and rational numbers as ordered pairs of integers. For complex numbers, {+0j1×} plays the same role as - for integers and ÷ for rational numbers. [11] :§8

Moreover, analogous to that monadic -0- (negate) and monadic ÷1÷ (reciprocal), a monadic definition of the function is useful, effected by specifying a default value of 0 for : if j{0+0j1×}, then j0j0+0j1×.

j{0+0j1×}3j4¯5.67.893J43J¯5.63J7.89j4¯5.67.890J40J¯5.60J7.89sin1cos2Euler{(*j)=(cos)j(sin)}Euler(¯0.5+?100)j(¯0.5+?100)1111111111

The last expression illustrates Euler's formula on ten random numbers with real and imaginary parts in the interval .

Single recursion

The ternary construction of the Cantor set starts with the interval [0,1] and at each stage removes the middle third from each remaining subinterval:

The Cantor set of order defined as a dfn: [11] :§2.5

Cantor{0=⍵:,1,101∘.-1}Cantor01Cantor1101Cantor2101000101Cantor3101000101000000000101000101

Cantor 0 to Cantor 6 depicted as black bars:

Cantor set in seven iterations.svg

The function sieve computes a bit vector of length so that bit i (for 0i and i<) is 1 if and only if i is a prime. [10] :§46

sieve{4⍵:⍵0011r0.5*np235711131719232931374143p(1+(n≤×p)1)pb0@1{(m)>m1mn×≢}1,p{r<qb1:bb[]1b[q,q×⍸bn÷q]0,q}p}1010sieve1000011010100010100010100010000010100000100010100010000010000010100000100010100000100010000010000000100bsieve1e9b1000000000(10*⍳10)(+)01b04251681229959278498664579576145550847534

The last sequence, the number of primes less than powers of 10, is an initial segment of OEIS:  A006880 . The last number, 50847534, is the number of primes less than . It is called Bertelsen's number, memorably described by MathWorld as "an erroneous name erroneously given the erroneous value of ". [12]

sieve uses two different methods to mark composites with 0s, both effected using local anonymous dfns: The first uses the sieve of Eratosthenes on an initial mask of 1 and a prefix of the primes 2 3...43, using the insert operator (right fold). (The length of the prefix obtains by comparison with the primorial function ×p.) The second finds the smallest new prime q remaining in b (qb1), and sets to 0 bit q itself and bits at q times the numbers at remaining 1 bits in an initial segment of b (bn÷q). This second dfn uses tail recursion.

Tail recursion

Typically, the factorial function is define recursively (as above), but it can be coded to exploit tail recursion by using an accumulator left argument: [13]

fac{1=0:⍺(×)-1}

Similarly, the determinant of a square complex matrix using Gaussian elimination can be computed with tail recursion: [14]

det{⍝ determinant of a square complex matrix1⍝ product of co-factor coefficients so far0=≢⍵:⍺⍝ result for 0-by-0(ij)()⊤⊃⍒|,⍝ row and column index of the maximal elementk⍳≢(×[i;j]ׯ1*i+j)[k~i;k~j]-[k~i;j]∘.×[i;k~j]÷[i;j]}

Multiple recursion

A partition of a non-negative integer is a vector of positive integers such that n=+v, where the order in is not significant. For example, 22 and 211 are partitions of 4, and 211 and 121 and 112 are considered to be the same partition.

The partition function counts the number of partitions. The function is of interest in number theory, studied by Euler, Hardy, Ramanujan, Erdős, and others. The recurrence relation

derived from Euler's pentagonal number theorem. [15] Written as a dfn: [10] :§16

pn{1⍵:0-+¨rec}rec{-(÷2(×1)¯11∘.+3×)1+⍳⌈0.5*×2÷3}pn1042pn¨13⍝ OEIS A00004111235711152230425677

The basis step 1⍵:0 states that for 1, the result of the function is 0, 1 if ⍵ is 0 or 1 and 0 otherwise. The recursive step is highly multiply recursive. For example, pn200 would result in the function being applied to each element of rec200, which are:

rec200199195188178165149130108835524¯10198193185174160143123100744513¯22

and pn200 requires longer than the age of the universe to compute ( function calls to itself). [10] :§16 The compute time can be reduced by memoization, here implemented as the direct operator (higher-order function) M:

M{f⍺⍺i2+'⋄'t2↓,⎕cr'f''{T←(1+⍵)⍴¯1 ⋄ ',(it),'¯1≢T[⍵]:⊃T[⍵] ⋄ ⊃T[⍵]←⊂',(it),'⍵}⍵'}pnM2003.973E120pnM200⍝ format to 0 decimal places3972999029388

This value of pnM200 agrees with that computed by Hardy and Ramanujan in 1918. [16]

The memo operator M defines a variant of its operand function ⍺⍺ to use a cache T and then evaluates it. With the operand pn the variant is:

{T(1+)¯1{1⍵:0¯1T[]:T[]T[]⊂-+¨rec}}

Direct operator (dop)

Quicksort on an array works by choosing a "pivot" at random among its major cells, then catenating the sorted major cells which strictly precede the pivot, the major cells equal to the pivot, and the sorted major cells which strictly follow the pivot, as determined by a comparison function ⍺⍺. Defined as a direct operator (dop) Q:

Q{1≥≢⍵:⍵(⌿⍨0>s)(⌿⍨0=s)⌿⍨0<s⍺⍺?≢}⍝ precedes            ⍝ follows            ⍝ equals2(×-)88(×-)28(×-)8¯110x2193836941970101514(×-)Qx0233467891014151919

Q3 is a variant that catenates the three parts enclosed by the function instead of the parts per se. The three parts generated at each recursive step are apparent in the structure of the final result. Applying the function derived from Q3 to the same argument multiple times gives different results because the pivots are chosen at random. In-order traversal of the results does yield the same sorted array.

Q3{1≥≢⍵:⍵(⌿⍨0>s)(⌿⍨0=s)⍪⊂⌿⍨0<s⍺⍺?≢}(×-)Q3x┌────────────────────────────────────────────┬─────┬┐│┌──────────────┬─┬─────────────────────────┐│1919││││┌──────┬───┬─┐│6│┌──────┬─┬──────────────┐│││││││┌┬─┬─┐│334││││┌┬─┬─┐│9│┌┬──┬────────┐││││││││││02││││││││78│││││10│┌──┬──┬┐│││││││││└┴─┴─┘│││││└┴─┴─┘││││││1415││││││││││└──────┴───┴─┘│││││││└──┴──┴┘│││││││││││└┴──┴────────┘││││││││└──────┴─┴──────────────┘│││││└──────────────┴─┴─────────────────────────┘│││└────────────────────────────────────────────┴─────┴┘(×-)Q3x┌───────────────────────────┬─┬─────────────────────────────┐│┌┬─┬──────────────────────┐│7│┌────────────────────┬─────┬┐││││0│┌┬─┬─────────────────┐││││┌──────┬──┬────────┐│1919│││││││││2│┌────────────┬─┬┐││││││┌┬─┬─┐│10│┌──┬──┬┐│││││││││││││┌───────┬─┬┐│6││││││││││89││││1415││││││││││││││││┌┬───┬┐│4│││││││││││└┴─┴─┘││└──┴──┴┘││││││││││││││││33│││││││││││││└──────┴──┴────────┘│││││││││││││└┴───┴┘││││││││││└────────────────────┴─────┴┘│││││││││└───────┴─┴┘│││││││││││││└────────────┴─┴┘│││││││└┴─┴─────────────────┘│││└┴─┴──────────────────────┘│└───────────────────────────┴─┴─────────────────────────────┘

The above formulation is not new; see for example Figure 3.7 of the classic The Design and Analysis of Computer Algorithms. [17] However, unlike the pidgin ALGOL program in Figure 3.7, Q is executable, and the partial order used in the sorting is an operand, the (×-) the examples above. [9]

Dfns with operators and trains

Dfns, especially anonymous dfns, work well with operators and trains. The following snippet solves a "Programming Pearls" puzzle: [18] given a dictionary of English words, here represented as the character matrix a, find all sets of anagrams.

a{[]}1a({[]}1{})apatsapst┌────┬────┬────┐spatapstpatsteasstarteasaestspatsatesateaesttapsetastapsapstpastseatetasaesteatspastapsttaseseataesteasteatsaestsetataseaest└────┴────┴────┘stararsteastaestsetaaest

The algorithm works by sorting the rows individually ({[]}1a), and these sorted rows are used as keys ("signature" in the Programming Pearls description) to the key operator to group the rows of the matrix. [9] :§3.3 The expression on the right is a train, a syntactic form employed by APL to achieve tacit programming. Here, it is an isolated sequence of three functions such that (fgh)(f)g(h), whence the expression on the right is equivalent to ({[]}1a){}a.

Lexical scope

When an inner (nested) dfn refers to a name, it is sought by looking outward through enclosing dfns rather than down the call stack. This regime is said to employ lexical scope instead of APL's usual dynamic scope. The distinction becomes apparent only if a call is made to a function defined at an outer level. For the more usual inward calls, the two regimes are indistinguishable. [19] :p.137

For example, in the following function which, the variable ty is defined both in which itself and in the inner function f1. When f1 calls outward to f2 and f2 refers to ty, it finds the outer one (with value 'lexical') rather than the one defined in f1 (with value 'dynamic'):

which{ty'lexical'f1{ty'dynamic'f2}f2{ty,}f1}which' scope'lexicalscope

Error-guard

The following function illustrates use of error guards: [19] :p.139

plus{tx'catch all'0::txtx'domain'11::txtx'length'5::tx+}2plus3⍝ no errors52345plus'three'⍝ argument lengths don't matchlength2345plus'four'⍝ can't add charactersdomain23plus345⍝ can't add vector to matrixcatchall

In APL, error number 5 is "length error"; error number 11 is "domain error"; and error number 0 is a "catch all" for error numbers 1 to 999.

The example shows the unwinding of the local environment before an error-guard's expression is evaluated. The local name tx is set to describe the purview of its following error-guard. When an error occurs, the environment is unwound to expose tx's statically correct value.

Dfns versus tradfns

Since direct functions are dfns, APL functions defined in the traditional manner are referred to as tradfns, pronounced "trad funs". Here, dfns and tradfns are compared by consideration of the function sieve: On the left is a dfn (as defined above); in the middle is a tradfn using control structures; on the right is a tradfn using gotos () and line labels.

sieve{4⍵:⍵0011r0.5*np235711131719232931374143p(1+(n≤×p)1)pb0@1{(m)>m1mn×≢}1,p{r<qb1:bb[]1b[q,q×⍸bn÷q]0,q}p}
bsieve1n;i;m;p;q;r:If4nbn0011:Return:EndIfr0.5*np235711131719232931374143p(1+(n≤×p)1)pb1:Forq:Inpb(mb)>mq1mnq×≢b:EndForb[1]0:Whilerqb1b[q,q×⍸bn÷q]0pq:EndWhileb[p]1
bsieve2n;i;m;p;q;rL104<nbn00110L10:r0.5*np235711131719232931374143p(1+(n≤×\p)1)pi0b1L20:b(mb)>mp[i]1mnp[i]×≢bL20(p)>i1+ib[1]0L30:L40r<qb1b[q,q×⍸bn÷q]0pqL30L40:b[p]1

History

Kenneth E. Iverson, the inventor of APL, was dissatisfied with the way user functions (tradfns) were defined. In 1974, he devised "formal function definition" or "direct definition" for use in exposition. [20] A direct definition has two or four parts, separated by colons:

name:expressionname:expression0:proposition:expression1

Within a direct definition, denotes the left argument and the right argument. In the first instance, the result of expression is the result of the function; in the second instance, the result of the function is that of expression0 if proposition evaluates to 0, or expression1 if it evaluates to 1. Assignments within a direct definition are dynamically local. Examples of using direct definition are found in the 1979 Turing Award Lecture [21] and in books and application papers. [22] [23] [24] [25] [9]

Direct definition was too limited for use in larger systems. The ideas were further developed by multiple authors in multiple works [26] :§8 [27] [28] :§4.17 [29] [30] [31] [32] but the results were unwieldy. Of these, the "alternative APL function definition" of Bunda in 1987 [31] came closest to current facilities, but is flawed in conflicts with existing symbols and in error handling which would have caused practical difficulties, and was never implemented. The main distillates from the different proposals were that (a) the function being defined is anonymous, with subsequent naming (if required) being effected by assignment; (b) the function is denoted by a symbol and thereby enables anonymous recursion. [9]

In 1996, John Scholes of Dyalog Limited invented direct functions (dfns). [1] [6] [7] The ideas originated in 1989 when he read a special issue of The Computer Journal on functional programming. [33] He then proceeded to study functional programming and became strongly motivated ("sick with desire", like Yeats) to bring these ideas to APL. [6] [7] He initially operated in stealth because he was concerned the changes might be judged too radical and an unnecessary complication of the language; other observers say that he operated in stealth because Dyalog colleagues were not so enamored and thought he was wasting his time and causing trouble for people. Dfns were first presented in the Dyalog Vendor Forum at the APL '96 Conference and released in Dyalog APL in early 1997. [1] Acceptance and recognition were slow in coming. As late as 2008, in Dyalog at 25, [34] a publication celebrating the 25th anniversary of Dyalog Limited, dfns were barely mentioned (mentioned twice as "dynamic functions" and without elaboration). As of 2019, dfns are implemented in Dyalog APL, [19] NARS2000, [35] and ngn/apl. [36] They also play a key role in efforts to exploit the computing abilities of a graphics processing unit (GPU). [37] [9]

Related Research Articles

<span class="mw-page-title-main">Associative property</span> Property of a mathematical operation

In mathematics, the associative property is a property of some binary operations, which means that rearranging the parentheses in an expression will not change the result. In propositional logic, associativity is a valid rule of replacement for expressions in logical proofs.

<span class="mw-page-title-main">APL (programming language)</span> Functional programming language for arrays

APL is a programming language developed in the 1960s by Kenneth E. Iverson. Its central datatype is the multidimensional array. It uses a large range of special graphic symbols to represent most functions and operators, leading to very concise code. It has been an important influence on the development of concept modeling, spreadsheets, functional programming, and computer math packages. It has also inspired several other programming languages.

In calculus, the chain rule is a formula that expresses the derivative of the composition of two differentiable functions f and g in terms of the derivatives of f and g. More precisely, if is the function such that for every x, then the chain rule is, in Lagrange's notation,

In computability theory, a primitive recursive function is, roughly speaking, a function that can be computed by a computer program whose loops are all "for" loops. Primitive recursive functions form a strict subset of those general recursive functions that are also total functions.

<span class="mw-page-title-main">J (programming language)</span> Programming language

The J programming language, developed in the early 1990s by Kenneth E. Iverson and Roger Hui, is an array programming language based primarily on APL.

A mathematical symbol is a figure or a combination of figures that is used to represent a mathematical object, an action on mathematical objects, a relation between mathematical objects, or for structuring the other symbols that occur in a formula. As formulas are entirely constituted with symbols of various types, many symbols are needed for expressing all mathematics.

<span class="mw-page-title-main">Legendre polynomials</span> System of complete and orthogonal polynomials

In mathematics, Legendre polynomials, named after Adrien-Marie Legendre (1782), are a system of complete and orthogonal polynomials with a vast number of mathematical properties and numerous applications. They can be defined in many ways, and the various definitions highlight different aspects as well as suggest generalizations and connections to different mathematical structures and physical and numerical applications.

<span class="mw-page-title-main">Kenneth E. Iverson</span> Canadian computer scientist (1920–2004)

Kenneth Eugene Iverson was a Canadian computer scientist noted for the development of the programming language APL. He was honored with the Turing Award in 1979 "for his pioneering effort in programming languages and mathematical notation resulting in what the computing field now knows as APL; for his contributions to the implementation of interactive systems, to educational uses of APL, and to programming language theory and practice".

K is a proprietary array processing programming language developed by Arthur Whitney and commercialized by Kx Systems. The language serves as the foundation for kdb+, an in-memory, column-based database, and other related financial products. The language, originally developed in 1993, is a variant of APL and contains elements of Scheme. Advocates of the language emphasize its speed, facility in handling arrays, and expressive syntax.

In computer programming, a guard is a boolean expression that must evaluate to true if the execution of the program is to continue in the branch in question. Regardless of which programming language is used, a guard clause, guard code, or guard statement, is a check of integrity preconditions used to avoid errors during execution.

In computing, the modulo operation returns the remainder or signed remainder of a division, after one number is divided by another.

In mathematics, an Appell sequence, named after Paul Émile Appell, is any polynomial sequence satisfying the identity

In mathematics, the Iverson bracket, named after Kenneth E. Iverson, is a notation that generalises the Kronecker delta, which is the Iverson bracket of the statement x = y. It maps any statement to a function of the free variables in that statement. This function is defined to take the value 1 for the values of the variables for which the statement is true, and takes the value 0 otherwise. It is generally denoted by putting the statement inside square brackets:

Rank is a generalization of looping as used in scalar (non-array-oriented) programming languages. It is also a generalization of mapcar in the language Lisp and map in modern functional programming languages, and a generalization of scalar extension, inner (matrix) product, and outer product in APL\360. The canonical implementation of rank may be the language J, but it is also available in Dyalog APL, the International Organization for Standardization (ISO) technical standard on Extended APL, and NARS2000.

The programming language APL is distinctive in being symbolic rather than lexical: its primitives are denoted by symbols, not words. These symbols were originally devised as a mathematical notation to describe algorithms. APL programmers often assign informal names when discussing functions and operators but the core functions and operators provided by the language are denoted by non-textual symbols.

In mathematics, the term undefined is often used to refer to an expression which is not assigned an interpretation or a value. The term can take on several different meanings depending on the context. For example:

In numerical analysis, Steffensen's method is an iterative method for root-finding named after Johan Frederik Steffensen which is similar to Newton's method, but with certain situational advantages. In particular, Steffensen's method achieves similar quadratic convergence, but without using derivatives as Newton's method does.

In the C and C++ programming languages, the comma operator is a binary operator that evaluates its first operand and discards the result, and then evaluates the second operand and returns this value ; there is a sequence point between these evaluations.

A truth table is a mathematical table used in logic—specifically in connection with Boolean algebra, Boolean functions, and propositional calculus—which sets out the functional values of logical expressions on each of their functional arguments, that is, for each combination of values taken by their logical variables. In particular, truth tables can be used to show whether a propositional expression is true for all legitimate input values, that is, logically valid.

<span class="mw-page-title-main">John M. Scholes</span> British computer scientist (1948-2019)

John Morley Scholes (1948–2019) was a British computer scientist. In his professional career he was devoted to the development of the programming language APL. He was the designer and implementer of direct functions.

References

  1. 1 2 3 Scholes, John (October 1996). "Direct Functions in Dyalog APL" (PDF). Vector. 13 (2). Retrieved 16 September 2019.
  2. Scholes, John (1998–2019), Direct Functions Reference Card , retrieved 26 September 2019[ permanent dead link ]
  3. Scholes, John (April 2001). "D: A Functional Subset of Dyalog APL". Vector. 17 (4). Retrieved 21 September 2019.
  4. Scholes, John (13 September 2009). Introduction to D-functions: 1 of 2 (video). Dyalog '09 User Conference. Retrieved 21 September 2019.
  5. Scholes, John (13 September 2009). Introduction to D-functions: 2 of 2 (video). Dyalog '09 User Conference. Retrieved 21 September 2019.
  6. 1 2 3 Scholes, John (31 October 2018). Dfns—Past, Present and Future (video). Dyalog '18 User Meeting. Retrieved 21 September 2019.
  7. 1 2 3 Scholes, John (31 October 2018), Dfns—Past, Present and Future (text) (PDF), Dyalog '18 User Meeting, retrieved 21 September 2019
  8. Scholes, John (1998–2019), Direct Functions Workspace , retrieved 2019-09-15
  9. 1 2 3 4 5 6 Hui, Roger; Kromberg, Morten (June 2020). "APL Since 1978". Proceedings of the ACM on Programming Languages. 4 (HOPL): 1–108. doi: 10.1145/3386319 . S2CID   218517570.
  10. 1 2 3 4 Hui, Roger (27 November 2016), A History of APL in 50 Functions , retrieved 17 September 2019
  11. 1 2 Hui, Roger (18 July 2016), APL Exercises , retrieved 24 September 2019
  12. Weisstein, Eric W., Bertelsen's Number, MathWorld, A Wolfram Web Resource, retrieved 26 September 2019
  13. Scholes, John (1998–2019), "Factorial", DFNS Workspace, retrieved 20 September 2019
  14. Scholes, John (1998–2019), "Determinant", DFNS Workspace, retrieved 20 September 2019
  15. Weisstein, Eric W., Partition Function P, equation 11, MathWorld, A Wolfram Web Resource, retrieved 3 October 2019
  16. Hardy, G.H.; Ramanujan, S. (1918), "Asymptotic Formulæ in Combinatory Analysis" (PDF), Proceedings of the London Mathematical Society, 17 (2), retrieved 24 December 2019
  17. Aho, A.V.; Hopcroft, J.E.; Ullman, J.D. (1974), The Design and Analysis of Computer Algorithms, Addison-Wesley
  18. Bentley, Jon (August 1983). "Programming Pearls". Communications of the ACM . 26 (8 and 9).
  19. 1 2 3 Dyalog (15 August 2019). Dyalog Programming Reference Guide, version 17.1, Dfns & Dops, pp. 133-147 (PDF). Dyalog Ltd. Retrieved 30 September 2019.
  20. Iverson, Kenneth E. (1974), "Chapter 10, Formal Function Definition", Elementary Functions, IBM Corporation, retrieved 18 September 2019
  21. Iverson, Kenneth E. (August 1980). "Notation as a Tool of Thought". Communications of the ACM . 23 (8): 444–465. doi: 10.1145/358896.358899 . Retrieved 8 April 2016.
  22. Iverson, Kenneth E. (1976). Elementary Analysis. APL Press.
  23. Orth, D.L. (1976). Calculus in a New Key. APL Press.
  24. Hui, Roger (May 1987). "Some Uses of { and }". APL 87 Conference Proceedings. Retrieved 15 April 2016.
  25. McDonnell, E.E. (May 1987), "Life: Nasty, Brutish, and Short", APL 87 Conference Proceedings, retrieved 6 October 2019[ permanent dead link ]
  26. Iverson, Kenneth E. (26 April 1978), "Operators and Functions", Research Report Number #RC7091, IBM Corporation, retrieved 2019-09-19
  27. Iverson, Kenneth E.; Wooster, Peter (September 1981). "A Function Definition Operator". APL81 Conference Proceedings, APL Quote Quad. 12 (1).
  28. Cheney, Carl M. (March 1981), APL*Plus Nested Array System Reference Manual (PDF), STSC, Inc. , retrieved 18 September 2019
  29. Iverson, Kenneth E. (6 January 1983), Rationalized APL, I. P. Sharp Associates , retrieved 2019-09-19
  30. Iverson, Kenneth E. (September 1987). "A Dictionary of APL". APL Quote Quad. 18 (1): 5–40. doi:10.1145/36983.36984. S2CID   18301178 . Retrieved 19 September 2019.
  31. 1 2 Bunda, John (May 1987). "APL Function Definition Notation". APL87 Conference Proceedings, APL Quote Quad. 17 (4).
  32. Hui, Roger; et al. (July 1990). "APL\?". Conference proceedings on APL 90: For the future. Vol. 20. pp. 192–200. doi:10.1145/97808.97845. ISBN   089791371X. S2CID   235453656 . Retrieved 2019-09-10.
  33. Wadler, Philip L.; et al. (1 January 1989). "Special Issue on Functional Programming". The Computer Journal . 32 (2).
  34. Dyalog (September 2008). "Dyalog at 25" (PDF). Vector. Retrieved 2019-09-20.
  35. Smith, Bob (2006–2019), NARS2000 , retrieved 18 September 2019
  36. Nickolov, Nick (September 2013). "Compiling APL to JavaScript". Vector. 26 (1). Retrieved 19 September 2019.
  37. Hsu, Aaron (2019). A Data Parallel Compiler Hosted on a GPU (PDF) (Ph.D. thesis). Indiana University . Retrieved 25 December 2019.