APLX: Difference between revisions

Jump to navigation Jump to search
3,145 bytes added ,  11:01, 13 May 2020
m
Text replacement - "tradfn" to "defined"
Miraheze>Marshall
m (Text replacement - "tradfn" to "defined")
(19 intermediate revisions by 5 users not shown)
Line 2: Line 2:
| array model              = [[nested array model|nested]]
| array model              = [[nested array model|nested]]
| index origin            = 0 or 1
| index origin            = 0 or 1
| function styles          = [[tradfn]]
| function styles          = [[Defined function|defined]]
| numeric types            = floats
| numeric types            = floats
| unicode support          = no
| unicode support          = no
Line 9: Line 9:
| developer                = [[MicroAPL Ltd.]]
| developer                = [[MicroAPL Ltd.]]
| latest release version  = 5.1 / 2016
| latest release version  = 5.1 / 2016
| implementation languages = [https://en.wikipedia.org/wiki/C_(programming_language) C], [https://en.wikipedia.org/wiki/C%2B%2B C++]
| implementation languages = [[wikipedia:C_(programming_language)|C]], [[wikipedia:C++|C++]]
| platforms                = x86, x86_64
| platforms                = x86
| operating systems        = Windows, Linux, macOS
| operating systems        = Windows, Linux, macOS High Sierra and earlier
| license                  = Free / Proprietary software
| license                  = Free / Proprietary software
| website                  = [http://microapl.com/apl/ microapl.com/apl]
| website                  = [http://microapl.com/apl/ microapl.com/apl]
| forum                    = [https://www.tapatalk.com/groups/microapl/ Support forum for APLX]
| download                = [http://www.dyalog.com/aplx.htm dyalog.com/aplx.htm]
| download                = [http://www.dyalog.com/aplx.htm dyalog.com/aplx.htm]
| file ext                = .aws
| file ext                = .aws
| documentation            = [http://www.dyalog.com/aplx.htm#APLXDocs APLX Documentation]
| documentation            = [http://www.dyalog.com/aplx.htm#APLXDocs APLX Documentation]
| influenced by            = [[APL2]]
| influenced by            = [[APL.68000]], [[APL2]]
}}
}}
'''APLX''' was a cross-platform dialect of the programming language APL, created by British company [[MicroAPL Ltd.]], as a successor to their [[APL.68000]] product.
'''APLX''' was a cross-platform dialect of the programming language APL, created by British company [[MicroAPL Ltd.]], as a successor to their [[APL.68000]] product.


APLX is intended for uses such as financial planning, market research, statistics, management information, and various kinds of scientific and engineering work. APLX is based on [[IBM]]'s [[APL2]], but includes several extensions. APLX version 3 was released in April and May 2005. It is available on Microsoft Windows, Linux, and macOS. Though APLX keeps APL's extended character set, APLX is a bit more verbose, due to the prevalence of system functions with long names, and the use of structured-control keywords. The use of explicit loops is a major deviation from earlier APL versions and derivatives.
APLX is intended for uses such as financial planning, market research, statistics, management information, and various kinds of scientific and engineering work. APLX is based on [[IBM]]'s [[APL2]], but includes several extensions. It is available on Microsoft Windows, Linux, and macOS. Though APLX keeps APL's extended character set, APLX is a bit more verbose, due to the prevalence of system functions with long names, and the use of structured-control keywords. The use of explicit loops is a major deviation from earlier APL versions and derivatives.


Effective July 11, 2016, MicroAPL withdrew APLX from commercial sale. British firm [[Dyalog]], authors of [[Dyalog APL]], began hosting the APLX Archive website including the download area and documentation.
Effective July 11, 2016, MicroAPL withdrew APLX from commercial sale. British firm [[Dyalog Ltd.]], authors of [[Dyalog APL]], began hosting the APLX Archive website including the download area and documentation.


== Primitives ==
== Primitives ==
Line 30: Line 31:


{| class=wikitable
{| class=wikitable
! Glyph         !! Monadic              !! Dyadic
! Glyph                             !! Monadic              !! Axis !! Dyadic                               !! Axis
|-
|-
| <code>+</code> || [[Conjugate]]        || [[Add]]
| <source lang=apl inline>+</source> || [[Conjugate]]        ||      || [[Add]]                               || vec
|-
|-
| <code>-</code> || [[Negate]]            || [[Subtract]]
| <source lang=apl inline>-</source> || [[Negate]]            ||      || [[Subtract]]                         || vec
|-
|-
| <code>×</code> || [[Sign of]]          || [[Multiply]]
| <source lang=apl inline>×</source> || [[Sign of]]          ||      || [[Multiply]]                         || vec
|-
|-
| <code>÷</code> || [[Reciprocal]]        || [[Divide]]
| <source lang=apl inline>÷</source> || [[Reciprocal]]        ||      || [[Divide]]                           || vec
|-
|-
| <code>⌈</code> || [[Ceiling]]          || [[Maximum|Greater of]]
| <source lang=apl inline>⌈</source> || [[Ceiling]]          ||      || [[Maximum|Greater of]]               || vec
|-
|-
| <code>⌊</code> || [[Floor]]            || [[Minimum|Lesser of]]
| <source lang=apl inline>⌊</source> || [[Floor]]            ||      || [[Minimum|Lesser of]]                 || vec
|-
|-
| <code><nowiki>|</nowiki></code> || [[Absolute value]]    || [[Residue]]
| <source lang=apl inline>|</source> || [[Absolute value]]    ||      || [[Residue]]                           || vec
|-
|-
| <code>⍳</code> || [[Iota|Index list]]   || [[Index of]]
| <source lang=apl inline>⍳</source> || [[Index list]]       ||      || [[Index of]]                         ||
|-
|-
| <code>?</code> || [[Roll]]              || [[Deal]]
| <source lang=apl inline>?</source> || [[Roll]]              ||      || [[Deal]]                             ||
|-
|-
| <code>*</code> || [[Exponential]]      || [[Power function|To the power of]]
| <source lang=apl inline>*</source> || [[Exponential]]      ||      || [[Power function|To the power of]]   || vec
|-
|-
| <code>⍟</code> || [[Natural log]]      || [[Logarithm|Log to the base]]
| <source lang=apl inline>⍟</source> || [[Natural log]]      ||      || [[Logarithm|Log to the base]]         || vec
|-
|-
| <code>○</code> || [[Pi times]]          || [[Circle function|Circular and Hyperbolic functions]]
| <source lang=apl inline>○</source> || [[Pi times]]          ||      || [[Circle function|Circular and Hyperbolic functions]] || vec
|-
|-
| <code>!</code> || [[Factorial]]        || [[Binomial]]
| <source lang=apl inline>!</source> || [[Factorial]]        ||      || [[Binomial]]                         || vec
|-
|-
| <code>⌹</code> || [[Matrix inverse]]    || [[Matrix divide]]
| <source lang=apl inline>⌹</source> || [[Matrix inverse]]    ||      || [[Matrix divide]]                     ||
|-
|-
| <code><</code> ||                      || [[Less than]]
| <source lang=apl inline><</source> ||                      ||      || [[Less than]]                         || vec
|-
|-
| <code>≤</code> ||                      || [[Less than or equal]]
| <source lang=apl inline>≤</source> ||                      ||      || [[Less than or equal]]               || vec
|-
|-
| <code>=</code> ||                      || [[Equal]]
| <source lang=apl inline>=</source> ||                      ||      || [[Equal]]                             || vec
|-
|-
| <code>≥</code> ||                      || [[Greater than or equal]]
| <source lang=apl inline>≥</source> ||                      ||      || [[Greater than or equal]]             || vec
|-
|-
| <code>></code> ||                      || [[Greater than]]
| <source lang=apl inline>></source> ||                      ||      || [[Greater than]]                     || vec
|-
|-
| <code>≠</code> ||                      || [[Not equal]]
| <source lang=apl inline>≠</source> ||                      ||      || [[Not equal]]                         || vec
|-
|-
| <code>≡</code> || [[Depth]]            || [[Match]]
| <source lang=apl inline>≡</source> || [[Depth]]            ||      || [[Match]]                             ||
|-
|-
| <code>≢</code> ||                      || [[Not Match]]
| <source lang=apl inline>≢</source> ||                      ||      || [[Not Match]]                         ||
|-
|-
| <code>∊</code> || [[Enlist]]            || [[Membership]]
| <source lang=apl inline>∊</source> || [[Enlist]]            ||      || [[Membership]]                       ||
|-
|-
| <code>⍷</code> ||                      || [[Find]]
| <source lang=apl inline>⍷</source> ||                      ||      || [[Find]]                             ||
|-
|-
| <code>∪</code> || [[Unique]]            || [[Union]]
| <source lang=apl inline>∪</source> || [[Unique]]            ||      || [[Union]]                             ||
|-
|-
| <code>∩</code> ||                      || [[Intersection]]
| <source lang=apl inline>∩</source> ||                      ||      || [[Intersection]]                     ||
|-
|-
| <code>~</code> || [[Not]]              || [[Without]]
| <source lang=apl inline>~</source> || [[Not]]              ||      || [[Without]]                           ||
|-
|-
| <code>∨</code> ||                      || [[Or]]
| <source lang=apl inline>∨</source> ||                      ||      || [[Or]]                               ||
|-
|-
| <code>^</code> ||                      || [[And]]
| <source lang=apl inline>^</source> ||                      ||      || [[And]]                               ||
|-
|-
| <code>⍱</code> ||                      || [[Nor]]
| <source lang=apl inline>⍱</source> ||                      ||      || [[Nor]]                               ||
|-
|-
| <code>⍲</code> ||                      || [[Nand]]
| <source lang=apl inline>⍲</source> ||                      ||      || [[Nand]]                             ||
|-
|-
| <code>⍴</code> || [[Shape|Shape of]]    || [[Reshape]]
| <source lang=apl inline>⍴</source> || [[Shape|Shape of]]    ||      || [[Reshape]]                           ||
|-
|-
| <code>,</code> || [[Ravel]]             || [[Catenate|Catenate, Laminate]]
| <source lang=apl inline>,</source> || [[Ravel]]         || vec,frac || [[Catenate|Catenate, Laminate]]       ||
|-
|-
| <code>⍪</code> ||                      || [[Catenate First|1st axis catenate]]
| <source lang=apl inline>⍪</source> ||                      ||      || [[Catenate First|1st axis catenate]] ||
|-
|-
| <code>⌽</code> || [[Reverse]]          || [[Rotate]]
| <source lang=apl inline>⌽</source> || [[Reverse]]          || scal || [[Rotate]]                           || scal
|-
|-
| <code>⊖</code> ||                       || [[Rotate First|1st axis rotate]]
| <source lang=apl inline>⊖</source> || [[Reverse First]]    || scal || [[Rotate First|1st axis rotate]]     || scal
|-
|-
| <code>⍉</code> ||colspan=2| [[Transpose]]
| <source lang=apl inline>⍉</source> ||colspan=4| [[Transpose]]
|-
|-
| <code>↑</code> || [[First]]            || [[Take]]
| <source lang=apl inline>↑</source> || [[First]]            ||      || [[Take]]                             || vec
|-
|-
| <code>↓</code> ||                      || [[Drop]]
| <source lang=apl inline>↓</source> ||                      ||      || [[Drop]]                             || vec
|-
|-
| <code>⊂</code> || [[Enclose]]          || [[Partition]]
| <source lang=apl inline>⊂</source> || [[Enclose]]          || vec  || [[Partition]]                         || scal
|-
|-
| <code>⊃</code> || [[Mix]] ("Disclose") || [[Pick]]
| <source lang=apl inline>⊃</source> || [[Disclose]]         || vec || [[Pick]]                             ||
|-
|-
| <code>⌷</code> ||                      || [[Squad Index|Index]]
| <source lang=apl inline>⌷</source> ||                      ||      || [[Squad Index|Index]]                 || vec
|-
|-
| <code>⍋</code> ||colspan=2| [[Grade up]]
| <source lang=apl inline>⍋</source> ||colspan=4| [[Grade up]]
|-
|-
| <code>⍒</code> ||colspan=2| [[Grade down]]
| <source lang=apl inline>⍒</source> ||colspan=4| [[Grade down]]
|-
|-
| <code>⊤</code> ||                      || [[Encode]]
| <source lang=apl inline>⊤</source> ||                      ||      || [[Encode]]                           ||
|-
|-
| <code>⊥</code> ||                      || [[Decode]]
| <source lang=apl inline>⊥</source> ||                      ||      || [[Decode]]                           ||
|-
|-
| <code>⍺</code> ||                      || Picture format
| <source lang=apl inline>⍺</source> ||                      ||      || Picture format                       ||
|-
|-
| <code>⍕</code> || [[Format]]            || [[Dyadic format|Format]] by specification or by example
| <source lang=apl inline>⍕</source> || [[Format]]            ||      || [[Dyadic format|Format]] by specification or by example ||
|-
|-
| <code>⍎</code> ||                      || [[Execute]]
| <source lang=apl inline>⍎</source> ||                      ||      || [[Execute]]                           ||
|-
|-
| <code>⊣</code> || [[Stop]]              || [[Left Identity|Left]]
| <source lang=apl inline>⊣</source> || [[Stop]]              ||      || [[Left Identity|Left]]               ||
|-
|-
| <code>⊢</code> || [[Identity|Pass]]    || [[Right Identity|Right]]
| <source lang=apl inline>⊢</source> || [[Identity|Pass]]    ||      || [[Right Identity|Right]]             ||
|-
|-
| <code>/</code> ||                      || [[Compress]], [[Replicate]]
| <source lang=apl inline>/</source> ||                      ||      || [[Compress]], [[Replicate]]           || scal
|-
|-
| <code>⌿</code> ||                      || [[Replicate First|1st axis compress/replicate]]
| <source lang=apl inline>⌿</source> ||                      ||      || [[Replicate First|1st axis compress/replicate]] || scal
|-
|-
| <code>\</code> ||                      || [[Expand]]
| <source lang=apl inline>\</source> ||                      ||      || [[Expand]]                           || scal
|-
|-
| <code>⍀</code> ||                      || [[Expand First|1st axis expand]]
| <source lang=apl inline>⍀</source> ||                      ||      || [[Expand First|1st axis expand]]     || scal
|}
|}


Line 148: Line 149:
! Glyph          !! Valence !! Monadic call                    !! Dyadic call
! Glyph          !! Valence !! Monadic call                    !! Dyadic call
|-
|-
| <code>/</code>  || Monadic || [[Reduce]]                      || [[N-wise Reduce]]
| <source lang=apl inline>/</source>  || Monadic || [[Reduce]]                      || [[N-wise Reduce]]
|-
|-
| <code>⌿</code>  || Monadic || [[Reduce First|1st axis reduce]] || [[N-wise Reduce first]]
| <source lang=apl inline>⌿</source>  || Monadic || [[Reduce First|1st axis reduce]] || [[N-wise Reduce first]]
|-
|-
| <code>\</code>  || Monadic || [[Scan]]                        ||
| <source lang=apl inline>\</source>  || Monadic || [[Scan]]                        ||
|-
|-
| <code>⍀</code>  || Monadic || [[Scan First|1st axis scan]]    ||
| <source lang=apl inline>⍀</source>  || Monadic || [[Scan First|1st axis scan]]    ||
|-
|-
| <code>.</code>  || Dyadic  ||                                  || [[Inner product]]
| <source lang=apl inline>.</source>  || Dyadic  ||                                  || [[Inner product]]
|-
|-
| <code>∘.</code> || Monadic ||                                  || [[Outer product]]
| <source lang=apl inline>∘.</source> || Monadic ||                                  || [[Outer product]]
|-
|-
| <code>¨</code>  || Monadic ||colspan=2| [[Each]]
| <source lang=apl inline>¨</source>  || Monadic ||colspan=2| [[Each]]
|}
|}


== External links ==
== External links ==


* [http://www.dyalog.com/aplx.htm Download APLX]
* [http://www.dyalog.com/aplx.htm APLX Archive]
* [https://dyalog.github.io/aplx/ Tools to help migrate from APLX to Dyalog APL]
* [https://dyalog.github.io/aplx/ Tools to help migrate from APLX to Dyalog APL]


{{APL programming language}}
{{APL dialects}}[[Category:APL dialects]][[Category:Nested array languages]]

Navigation menu