Apl (programming Language) Article Index for
Apl
Shopping
APL
Website Links For
Apl
 

Information About

Apl (programming Language)




  paradigm Array , Functional , Structured , Modular
  year 1964
  designer Kenneth E Iverson
  developer Kenneth E Iverson
  typing Dynamic
  implementations IBM APL2, Dyalog APL, APL2000, Sharp APL
  dialects A+
  influenced By Mathematical Notation
  influenced J , K , Nial


APL ('''A''' '''P'''rogramming '''L'''anguage) is an Array Programming language based on a notation invented in 1957 by Kenneth E. Iverson while at Harvard University . It originated as an attempt to provide consistent notation for the teaching and analysis of topics related to the application of computers. Iverson published his notation in 1962 in a book titled ''A Programming Language'', and APL got its name from the title of this book. In 1964, a subset of the notation was implemented as a programming language. Iverson received the Turing Award in 1979 for his work.

As with all programming languages that have had several decades of continual use, APL has evolved significantly, generally in an upwards-compatible manner, from its early releases. APL is usually Interpretive and Interactive , features much appreciated by its users. Further, the initial lack of support for Structured Programming has been rectified in most of the modern APL implementations.

One commonly noted aspect of APL is the use of a special character set visually depicting the operations to be performed. Iverson's notation was used to describe the IBM System/360 machine architecture, a description much more concise and exact than the existing documentation and revealing several previously unnoticed problems. Later, a Selectric typeball was specially designed to write a linear representation of this notation.


OVERVIEW

Over a very wide set of problem domains (math, science, engineering, computer design, robotics, data visualization, actuarial science, traditional DP, etc.) APL is an extremely powerful, expressive and concise programming language, typically set in an interactive environment. It was originally created, among other things, as a way to describe computers, by expressing Mathematical Notation in a rigorous way that could be interpreted by a computer. It is easy to learn but some APL programs can take some time to understand, especially for a newcomer. Few other programming languages offer the comprehensive array functionality of APL.

Unlike traditionally structured programming languages, code in APL is typically structured as chains of Monadic or Dyadic Functions and Operator s acting on Array s. As APL has many nonstandard ''primitives'' (functions and operators, indicated by a single symbol or a combination of a few symbols), it does not have function or Operator Precedence . Early APL implementations did not have Control Structures (do or while loops, if-then-else), but by using array operations, usage of Structured Programming constructs was just not necessary. For example, the iota function (which yields a one-dimensional array, or vector, from 1 to N) can replace for-loop Iteration . More recent implementations of APL generally include comprehensive control structures, thus data structure and program control flow can be clearly and cleanly separated.

The APL environment is called a workspace. In a workspace the user can define programs and data, i.e. the data values exist also outside the programs, and the user can manipulate the data without the necessity to define a program. For example,

:N \leftarrow 4\ 5\ 6\ 7

assigns the Vector values 4 5 6 7 to N;

:N+4\,\!

adds 4 to all values (giving 8 9 10 11) and prints them (a return value not assigned at the end of a statement to a variable using the assignment arrow \leftarrow is displayed by the APL interpreter);

:+/N\,\!

prints the sum of N, i.e. 22.

The user can save the workspace with all values, programs and execution status.

APL is well-known for its use of a set of non- ASCII symbols that are an extension of traditional arithmetic and algebraic notation. These cryptic symbols, mostly the reason it is possible to formulate extremely terse and compact problem formulations in APL, make it possible to write Conway's Game Of Life in one line of code ( example ). In nearly all versions of APL, it is theoretically possible to express any computable function in one expression, that is, in one line of code.

Because of its condensed nature and non-standard characters, APL has sometimes been termed a " Write-only Language ", and reading an APL program can at first feel like decoding Egyptian Hieroglyphics . Because of the unusual Character Set , many programmers use special Keyboards with APL keytops for authoring APL code. Although there are various ways to write APL code using only ASCII characters, in practice, it is almost never done. (This may be thought to support Iverson’s theses about notation as a tool of thought.) Most if not all modern implementations use standard keyboard layouts, with special mappings or Input Method Editor s to access non-ASCII characters. Historically, the APL font has been distinctive, with uppercase italic alphabetic characters and upright numerals and symbols. Most vendors continue to display the APL character set in a custom font.

Advocates of APL claim that the examples of so-called write-only code are almost invariably examples of poor programming practice or novice mistakes, which can occur in any language. Advocates of APL also claim that they are far more productive with APL than with more conventional computer languages, and that working software can be implemented in far less time and with far fewer programmers than using other technology. APL lets an individual solve harder problems faster. Also, being compact and terse, APL lends itself well to larger scale software development as complexity arising from a large number of lines of code can be dramatically reduced. APL is often found where time-to-market is important, such as with trading systems.

Iverson later designed a new language called J which uses ASCII with Digraphs instead of special symbols.


EXAMPLES

The following expression Sorts a word list stored in matrix X according to word length:

The following function "life", written in Dyalog APL, takes a boolean matrix and calculates the new generation according to Conway's Game Of Life :

In the following example, also Dyalog, the first line assigns some HTML code to a variable "txt" and then uses an APL expression to remove all the HTML tags, returning the text only as shown in the last line.

The following expression finds all Prime Number s from 1 to R (presuming an Index Origin of 1). In both time and space, the calculation is O(R2).

:(∼R∈R∘.×R)/R←1↓⍳R

From right to left, this means:

#⍳R creates a vector containing Integer s from 1 to R (if R = 6 at the beginning of the program, ⍳R is 1 2 3 4 5 6)
#Drop first element of this vector (↓ function), i.e. 1. So 1↓⍳R is 2 3 4 5 6
#Set R to the vector (←, assignment primitive)
#Generate outer product of R multiplied by R, i.e. a matrix which is the '' Multiplication Table '' of R by R (∘.× function)
#Build a vector the same length as R with 1 in each place where the corresponding number in R is in the outer product matrix (∈, set inclusion function), i.e. 0 0 1 0 1
#Logically negate the values in the vector (change zeros to ones and ones to zeros) (∼, negation function), i.e. 1 1 0 1 0
#Select the items in R for which the corresponding element is 1 (/ function), i.e. 2 3 5


CALCULATION

APL was unique in the speed with which it could perform complex matrix operations. For example, a very large matrix multiplication would take only a few seconds on a machine which was much less powerful than those today. There were some technical and other economic reasons for this advantage:
  • Commercial interpreters delivered highly-tuned linear algebra library routines.

  • Very low interpretive overhead was incurred per-array—not per-element.

  • APL response time compared favorably to the runtimes of early optimizing compilers.

  • IBM provided Microcode assist for APL on a number of IBM/370 mainframes.


A widely cited paper "The APL Machine" perpetuated the myth that APL made pervasive use of , it gives language implementors immense freedom to schedule operations as efficiently as possible. As computer innovations such as Cache Memory , and SIMD execution became commercially available, APL programs ported with little extra effort spent re-optimizing low-level details.


INTERPRETERS

Today, most APL language activity takes place under the Microsoft Windows operating system, with some activity under Linux , Unix , and Mac OS . Comparatively little APL activity takes place today on mainframe computers.

  • Plus/PC and APL---Plus/386 product line.


''Dyalog APL'' is an advanced APL interpreter which operates under Linux, Unix, and Windows. Dyalog has aggressive extensions to the APL language which include new Object Oriented features, numerous language enhancements, plus a consistent Namespace model used for both its Microsoft Automation interface, as well as native namespaces.

IBM offers a version of IBM APL2 for Linux and Windows systems. This product is a continuation of APL2 offered for IBM mainframes. IBM APL2 was arguably the most influential APL system, which provided a solid implementation standard for the next set of extensions to the language, focusing on nested arrays.

MicroAPL Limited offers ''APLX'', a full-featured 64 bit interpreter for Linux , Windows , and Apple Mac OS systems.

Soliton Associates offers the SAX interpreter (Sharp APL for Unix) for Unix and Linux systems, which is a further development of I. P. Sharp Associates' Sharp APL product. Unlike most other APL interpreters, Kenneth E. Iverson had some influence in the way nested arrays were implemented in Sharp APL and SAX. Nearly all other APL implementations followed the course set by IBM with APL2, thus some important details in Sharp APL differ from other implementations.


EVOLUTION


APL gained its foothold on mainframe timesharing systems in the 1960s through the 1980s. Later, when suitably performing hardware was finally available starting in the early to mid-1980s, many users migrated their applications to the personal computer environment.

The first microcomputer implementation of APL was on the MCM/70, an 8008 -based processor, in 1973. A Small APL for the Intel 8080 called EMPL was released in 1977, and Softronics APL, with most of the functions of full APL, for 8080-based CP/M systems was released in 1979.

In 1977, was released a business level APL known as TIS APL, based on the Z80 processor. It featured the full set of file functions for APL, plus a full screen input and swtiching of right and left arguments for most dyadic operators by introducing ~. prefix to all single character dyadic functions such as - or /.

  • Plus/PC.


In the early 1980s, the Analogic Corporation developed ''The APL Machine'', which was an Array Processing computer designed to be programmed only in APL. There were actually three processing units, the user's workstation, an IBM PC , where programs were entered and edited, a Motorola 6800 processor which ran the APL interpreter, and the Analogic array processor which executed the primitives. At the time of its introduction The APL Machine was likely the fastest APL system available. Although a technological success, The APL Machine was a marketing failure. The initial version supported a single process at a time. At the time the project was discontinued, the design had been completed to allow multiple users. As an aside, an unusual aspect of The APL Machine was that the library of workspaces was organized such that a single function or variable which was shared by many workspaces existed only once in the library. Several of the members of The APL Machine project had previously spent a number of years with Burroughs implementing ''APL''.

IBM was responsible for the introduction of APL to the marketplace. Today, the ''APL2'' product is available for IBM mainframes with CMS and TSO ; and the APL2 Workstation edition (Windows, AIX, Linux, and Solaris). Earlier, the ''VSAPL'' program product enjoyed widespread usage with CMS , TSO , VSPC , and CICS users.

Prior to ''APL2'' and ''VSAPL'', early IBM APL interpreters for IBM 360 and IBM 370 hardware implemented their own multi-user management instead of relying on the host services, thus they were timesharing systems in their own right. First introduced in 1966, the ''APL'' system was a multi-user interpreter . In 1973, IBM released ''APL.SV'' which was a continuation of the same product, but which offered Shared Variables as a means to access facilities outside of the APL system, such as operating system files.

APL was first available for the IBM 1130 as ''APLK0''.1 }}

''Sharp APL'' was available from I. P. Sharp Associates , first on a timesharing basis, and later as a program product. ''Sharp APL'' was an advanced APL implementation with many language extensions, such as ''packages'' (the ability to put one or more objects into a single variable), file system, nested arrays, and Shared Variables .

APL interpreters were available from other computer manufactures as well, notably Burroughs , CDC , Data General , DEC , Harris , Hewlett-Packard , Siemens , Xerox , and others.

At one stage, Microsoft Corporation planned to release a version of APL, but these plans never materialized.

An early 1978 publication of Rodnay Zaks from Sybex was ''A microprogrammed APL implementation'' ISBN 0895880059 which is the complete, total source listing for the microcode for a PDP / LSI-11 processor implementing APL. This may have been the substance of his PhD Thesis.


COMPILATION

APL programs are normally Interpreted and less often Compiled . In reality, most APL "compilers" Translated source APL to a lower level language such as C , leaving the machine-specific details to the lower level compiler. Compilation of APL programs was a frequently discussed topic in conferences. Although some of the newer enhancements to the APL language such as nested arrays have rendered the language increasingly difficult to compile, the idea of APL compilation is still under development today.

In the past, APL compilation was regarded as a means to achieve execution speed comparable to other mainstream languages, especially on mainframe computers. Today, execution speed is less critical, considering the numbers of computer languages implemented using Virtual Machines . Several APL compilers did achieve varying levels of success, though comparatively little of the development effort spent on APL over the years went to perfecting compilation.

As is the case when moving APL programs from one vendor's APL interpreter to another, APL programs invariably will require changes to their content. Depending on the compiler, variable declarations might be needed, certain language features would need to be removed or avoided, or the APL programs would need to be cleaned up in some way. Some features of the language, such as the execute function (an expression evaluator) and the various Reflection and Introspection functions from APL, such as the ability to return a function's text or to materialize a new function from text, are simply not practical to implement.

APEX, a research APL compiler, is available from Snake Island Research Inc . APEX compiles flat APL (a subset of ISO N8485) into SAC , a functional array language with parallel semantics, and currently runs under Linux . APEX-generated code uses Loop Fusion and Array Contraction , special-case algorithms not generally available to interpreters (e.g., upgrade of Permutation Vector ), to achieve a level of performance comparable to that of Fortran

The APLNext VisualAPL system is a departure from a conventional APL system in that VisualAPL is a true .Net language which is fully inter-operable with other Microsoft .Net languages such as VB.Net and C#. VisualAPL is inherently object oriented and Unicode-based. While VisualAPL incorporates most of the features of legacy APL implementations, the VisualAPL language extends legacy APL to be .Net-compliant. VisualAPL is hosted in the standard Microsoft Visual Studio IDE and as such, invokes compilation in a manner identical to that of other .Net languages. By producing .Net common language runtime (CLR) code, it utilizes the Microsoft just-in-time compliler (JIT) to support 32-bit or 64-bit hardware. Substantial performance speed-ups over legacy APL have been reported, especially when (optional) strong-typing of function arguments is used.

An APL to C# translator is available from Causeway Graphical Systems . This product was designed to allow the APL code, translated to equivalent C#, to run completely outside of the APL environment. The Causeway compiler requires a run-time library of array functions. Some speedup, sometimes dramatic, is visible, but happens on account of the optimisations inherent in Microsoft's .Net framework.

A commercial compiler was brought to market by STSC in the mid 1980s as an add-on to IBM's VSAPL Program Product. Unlike more modern APL compilers, this product produced machine code which would execute only in the interpreter environment, it was not possible to eliminate the interpreter component. The compiler could compile many scalar and vector operations to machine code, but it would rely on the APL interpreter's services to perform some more advanced functions, rather than attempt to compile them. However, dramatic speedups did occur, especially for heavily iterative APL code.

Around the same time, the book An APL Compiler by Timothy Budd appeared in print. This book detailed the construction of an APL translator, written in C , which performed certain optimizations such as Loop Fusion specific to the needs of an array language. The source language was APL-like in that a few rules of the APL language were changed or relaxed to permit more efficient compilation. The translator would emit C code which then be compiled and run well outside of the APL workspace.


TERMINOLOGY

APL makes a clear distinction between ''functions'' and ''operators''. Functions take values (variables or constants or expressions) as arguments, and return values as results. Operators (aka Higher-order Function s) take functions as arguments, and return related, derived functions as results. For example the "sum" function is derived by applying the "reduction" operator to the "addition" function. Applying the same reduction operator to the "ceiling" function (which returns the larger of two values) creates a derived "maximum" function, which returns the largest of a group (vector) of values. In the J language, Iverson substituted the terms 'verb' and 'adverb' for 'function' and 'operator'.

APL also identifies those features built into the language, and represented by a symbol, or a fixed combination of symbols, as ''primitives''. Most primitives are either functions or operators. Coding APL is largely a process of writing non-primitive functions and (in some versions of APL) operators. However a few primitives are considered to be neither functions nor operators, most noticeably assignment.


CHARACTER SET

APL has always been criticized for its choice of a unique, non-standard character set. The observation that some who learn it usually become ardent adherents shows that there is some weight behind Iverson 's idea that the notation used does make a difference. In the beginning, there were few terminal devices which could reproduce the APL character set — the most popular ones employing the IBM Selectric print mechanism along with a special APL type element. Over time, with the universal use of high-quality graphic display and printing devices, the APL character font problem has largely been eliminated; however, the problem of entering APL characters requires the use of Input Method Editor s or special keyboard mappings, which may frustrate beginners accustomed to other languages. With the popularization of the Unicode standard, which contains the APL character set, the problem of obtaining the required fonts seems poised to go away.

From a user's standpoint, the additional characters can give APL a special elegance and concision not possible in other languages, using symbols visually mnemonic of the functions they represent. Or it can lead to a ridiculous degree of complexity and unreadability, typically when the symbols are strung together into a single mass without any comments. Or it can be unreasonably difficult and time consuming to enter then later edit those APL statements.


APL SYMBOLS AND KEYBOARD LAYOUT

Note the mnemonics associating an APL character with a letter: ''question mark'' on ''Q'', ''power'' on ''P'', ''rho'' on ''R'', ''base value'' on ''B'', ''eNcode'' on ''N'', ''modulus'' on ''M'' and so on. This makes it easier for an English-language speaker to type APL on a non-APL keyboard providing one has visual feedback on one's screen. Also, decals have been produced for attachment to standard keyboards, either on the front of the keys or on the top of them.

A more up to date keyboard diagram, applicable for APL2 and other modern implementations, is available: Union layout for windows .

All APL symbols are present in Unicode (although some APL products may not yet feature this):


Additional APL characters were available by ''overstriking'' one character over another. For example, the ''log'' symbol was formed by overstriking shift-''P'' with shift-''O''. This complicated correcting mistakes and editing program lines. This may have ultimately been the reason for early APL programs to have a certain dense style - they were difficult to edit.

Later IBM terminals, notably the IBM 3270 display stations, had an alternate keyboard arrangement which is the basis for some of the modern APL keyboard layouts in use today. Better terminals, namely display devices instead of printers, encouraged the development of better full screen editors, which had a measurable improvement in productivity and program readability.


See also



USAGE

APL has long had a small and fervent user base. It was and still is popular in financial and insurance applications, in simulations, and in mathematical applications, often where a solution changes frequently or where in a standard language yields excessive complexity. APL has been used in a wide variety of contexts and for many and varied purposes.

Mostly due to its Infix Notation and its emphasis on interaction with the computer, APL can be an ideal environment for the rapid deployment of interactive Domain Specific Language s. Despite the presence of non-standard characters in the APL character set, it is possible for a user of a domain-specific language implemented in APL to write simple programs (or scripts) consisting solely of words, numbers, and familiar punctuation. Until as late as the mid-1980s, APL Timesharing vendors offered applications delivered in the form of domain specific languages. On the I. P. Sharp timesharing system, a workspace called ''39 MAGIC'' offered access to financial and airline data plus sophisticated (for the time) graphing and reporting, in the form of a domain specific language. Another example is the GRAPHPAK workspace supplied with IBM's APL2; a demonstration version of both APL2 and GRAPHPAK can be downloaded for Windows.

APL has also been used in numerous Metaprogramming applications. Given external data which varied from time to time, APL programs were used to compose portions or complete sections of code written in other languages such as Fortran, COBOL, or Java. One application used APL to generate FORTRAN code of a substantial linear programming model. As such, the FORTRAN code was thought to be too large to be comfortably understood by a single or small group of individuals. However, with this approach, routine maintenance posed no barrier. Similar approaches were used where consolidation tables maintained outside of APL could be instantly transformed into sizable COBOL programs which performed the necessary consolidation computations. A tedious step which previously required several man-days, namely modifications to a long COBOL program, was practically eliminated. Similar things have been done which in the end emitted Java code.

Interest in APL has steadily declined since the 1980s. This was partially due to the lack of a migration path from performant mainframe implementations to early low-cost personal computer alternatives and the availability of high-productivity end-user computing tools such as Microsoft Excel and Microsoft Access . These are appropriate platforms for what may have been mainframe APL applications in the 1970s and 1980s. Some APL users migrated to the J Programming Language , which offers advanced features. Lastly, the decline was also due in part to the growth of MATLAB , an interactive array-oriented platform for scientific computing, which is in many ways similar to APL, allows APL-style interactive development, more resembles conventional programming languages such as Fortran, and uses standard ASCII.


STANDARDIZATION

APL has been standardized by the ANSI Working Group X3J10 and ISO / IEC Joint Technical Committee 1 Subcommittee 22 Working Group 3. The Core APL language is specified in ISO 8485:1989, and the Extended APL language is specified in ISO/IEC 13751:2001.


QUOTES

  • "APL, in which you can write a program to simulate shuffling a deck of cards and then dealing them out to several players in four characters, none of which appear on a standard keyboard." David Given


  • "APL is a mistake, carried through to perfection. It is the language of the future for the programming techniques of the past: it creates a new generation of coding bums." Edsger Dijkstra , 1968