All public logs
Jump to navigation
Jump to search
Combined display of all available logs of APL Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 18:53, 31 January 2024 Marshall talk contribs created page Group Indices (Redirected page to Group (BQN)) Tag: New redirect
- 18:51, 31 January 2024 Marshall talk contribs created page Group (BQN) (Created page with "{{Built-in|Group|⊔}} is a primitive function in BQN that places values at the specified indices in the result. Because each index can appear multiple times in the array of indices, or not at all, each result element is a list of all the values placed there. Group is ambivalent: in the dyadic case, the left argument is the array of indices and the right argument is the array of values. In the monadic case, the right argument gives the result indices and...")
- 16:15, 31 January 2024 Marshall talk contribs created page Group (Created page with ":''This page is about the K primitive that returns a dictionary. For the primitive that returns an array introduced by BQN, see Group (BQN).'' {{Built-in|Group|<nowiki>=</nowiki>}} is a monadic function in K that returns a dictionary whose keys are the unique values in its argument and whose value for a given key is the list of indices where it appears. In versions before K4, which introduced dictionaries, Group returns only an array of the index lis...")
- 23:27, 29 January 2024 Marshall talk contribs created page Undo (Redirected page to Inverse) Tag: New redirect
- 23:26, 29 January 2024 Marshall talk contribs created page Un (Redirected page to Inverse) Tag: New redirect
- 23:23, 29 January 2024 Marshall talk contribs created page Inverse (Created page with "The '''inverse''' of a function is a function that undoes its effect, computing an argument that corresponds to the given result for that function. In APL it's usually written with the Power operator as <syntaxhighlight lang=apl inline>(f⍣¯1) x</syntaxhighlight>. While some functions such as Reverse have an obvious exact inverse, others might have no valid inverse or many possible choices for a given result. Treatment of these cases varies among dialects, but...")
- 18:13, 29 January 2024 Marshall talk contribs created page Unbox (Redirected page to Mix) Tag: New redirect
- 14:39, 29 January 2024 Marshall talk contribs created page At operator (Redirected page to At) Tag: New redirect
- 14:38, 29 January 2024 Marshall talk contribs created page Power Operator (Redirected page to Power (operator)) Tag: New redirect
- 14:38, 29 January 2024 Marshall talk contribs created page Power operator (Redirected page to Power (operator)) Tag: New redirect
- 14:34, 29 January 2024 Marshall talk contribs created page Repeat (Redirected page to Power) Tag: New redirect
- 21:04, 28 January 2024 Marshall talk contribs created page Nub In (Redirected page to Nub in) Tag: New redirect
- 21:04, 28 January 2024 Marshall talk contribs created page A Dictionary of APL (Created page with "{{Infobox array language | array model = flat with boxes | index origin = 0 primarily; allowing 1 in dialects | function styles = definition operator, direct definition | numeric types = real and complex | released = 1987 | developer = Ken Iverson | influenced by = Rationalized APL, SHARP APL | influenced = J | implementation language= not...")
- 17:02, 27 January 2024 Marshall talk contribs created page Nubin (Redirected page to Nub in) Tag: New redirect
- 17:02, 27 January 2024 Marshall talk contribs created page Self-classify (Redirected page to Classify) Tag: New redirect
- 17:01, 27 January 2024 Marshall talk contribs created page Classify (Created page with "'''Self-classify''', or '''index-in-nub''', is a monadic function that gives the index of each of its argument cells in the unique argument cells, which can be implemented as <syntaxhighlight lang=apl inline>{(∪⍵)⍳⍵}</syntaxhighlight> or <syntaxhighlight lang=apl inline>(∪⍳⊢)</syntaxhighlight>. This result is another representation of the boolean matrix returned by the earlier function Nub in defined by Iverson. Classify is implement...")
- 16:42, 27 January 2024 Marshall talk contribs created page Nub in (Created page with ":''The name "self-classify" may also refer to the related function Classify, which returns a vector of indices instead of a boolean matrix.'' {{Built-in|Nub in|<nowiki>=</nowiki>}}, '''nub-classify''', or '''self-classify''', is a monadic function that indicates which unique cell each of its argument cells matches. It returns a boolean matrix where the first axis corresponds to unique cells and the second to all cells, and might be implemented as <sy...")
- 16:11, 27 January 2024 Marshall talk contribs created page Couple (Redirected page to Laminate) Tag: New redirect
- 16:04, 27 January 2024 Marshall talk contribs created page Laminate (Created page with "{{Built-in|Laminate|,[0.5]}} is a case of the Catenate function with axis that joins its argument arrays along a new length-2 axis. It applies whenever the function axis is non-integral, but is typically written with a half-integer axis. Possible choices of axis range from <syntaxhighlight lang=apl inline>,[⎕IO-0.5]</syntaxhighlight>, which places the new axis before any argument axis, to <syntaxhighlight lang=apl inline>,[r+⎕IO-0.5]</syntax...")
- 13:04, 27 January 2024 Marshall talk contribs created page Deshape (Redirected page to Ravel) Tag: New redirect
- 12:59, 27 January 2024 Marshall talk contribs created page Deduplicate (Redirected page to Unique) Tag: New redirect
- 12:53, 27 January 2024 Marshall talk contribs created page Length (Redirected page to Tally) Tag: New redirect
- 12:51, 27 January 2024 Marshall talk contribs created page Greater or equal (Redirected page to Greater Than or Equal) Tag: New redirect
- 12:51, 27 January 2024 Marshall talk contribs created page Less or equal (Redirected page to Less Than or Equal) Tag: New redirect
- 12:51, 27 January 2024 Marshall talk contribs created page Not equals (Redirected page to Not Equal to) Tag: New redirect
- 23:14, 24 January 2024 Marshall talk contribs created page Category:Languages with first-class functions (Created page with "Array languages that allow functions to be used as ordinary values, for example by passing them as arguments or placing them in arrays. In some cases this use requires different syntax, but the semantics should be that the function itself and not a wrapper is passed. Category:Array languages")
- 22:49, 24 January 2024 Marshall talk contribs deleted page Category:BQN (content was: "{{Cat main|BQN}} Category:Array languages", and the only contributor was "Marshall" (talk))
- 22:44, 24 January 2024 Marshall talk contribs created page Category:List-based array languages (Created page with "Category:Array languages")
- 22:53, 12 January 2024 Marshall talk contribs created page Lil (Created page with "{{Infobox array language | array model = Lists | index origin = 0 | function styles = defined or inline with <code>on</code> | numeric types = floats | unicode support = none | released = 2022 | file ext = .lil | developer = John Earnest | latest release version = 2024 (frequent releases) | implementation language = wikipedia:C...")
- 01:40, 14 October 2023 Marshall talk contribs created page Xs (Created page with "{{Infobox array language | array model = lists | index origin = 0 | function styles = tacit | numeric types = integer, float | file ext = .xs | released = 2020 | developer = Sturm Mabie | latest release version = 2020 (unversioned) | implementation language = Ocaml | source = [https://github.com/smabie/xs GitHub] | platfo...")
- 14:29, 3 October 2023 Marshall talk contribs created page Talk:Unique (Issues with changes to the APL model section)
- 00:45, 27 September 2023 Marshall talk contribs created page Uiua (Created page with "{{Infobox array language | logo = File:Uiua logo.png | array model = flat with box-like niladic functions | index origin = 0 | function styles = stack-based tacit | numeric types = 64-bit float | unicode support = full | released = 2023 | developer = Kai Schmidt | latest release version = 2023 (unversioned) | implementation languages = [...")
- 00:01, 27 September 2023 Marshall talk contribs created page File:Uiua logo.png (Uiua logo)
- 00:01, 27 September 2023 Marshall talk contribs uploaded File:Uiua logo.png (Uiua logo)
- 18:50, 17 May 2023 Marshall talk contribs blocked TahliaMichaud talk contribs with an expiry time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
- 18:50, 17 May 2023 Marshall talk contribs deleted page The Value Of Utilization A Twitter Video Recording Downloader (Spam: content was: "In today's age, social media sites systems have actually ended up being an essential portion of our everyday lives, and also individuals depend on all of them to associate with one another, discuss their notions, and present their job. Among all social networks systems, Twitter is one of the most well-liked ones, as well as individuals utilize it thoroughly t...", and the only contributor was "TahliaMichaud" ([[User talk:TahliaMichau...)
- 14:02, 16 May 2023 Marshall talk contribs blocked KatharinaStallwo talk contribs with an expiry time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
- 14:02, 16 May 2023 Marshall talk contribs deleted page User:KatharinaStallwo (Spam: content was: "At the factor when you de-board your aircraft at any sort of plane terminal, by then comes this Meet and Greet Solution that are going to create your growths from the air terminals remarkably refine. Features of these connections combine Comfortable through Hostess, Transferring to Aircraft as well as Custom Purchases at VIP Lounge. You can in like m...", and the only contributor was "KatharinaStallwo" ([[User talk:KatharinaStallw...)
- 02:20, 20 April 2023 Marshall talk contribs created page Futhark (Created page with "{{Infobox array language | array model = Lists compiled to flat | index origin = 0 | numeric types = Integer and float with specified width | released = 2014 | developer = Troels Henriksen, Cosmin Oancea, Martin Elsman | latest release version = 0.24 / 2023 | implementation language = wikipedia:Haskell | platforms = Compiles to wikipedia:CUDA...")
- 00:54, 20 April 2023 Marshall talk contribs created page Goal (Created page with "{{Infobox array language | array model = Lists | index origin = 0 | function styles = dfn-style | numeric types = ints, floats | unicode support = none (characters are bytes) | released = 2022 | developer = anaseto | latest release version = 0.14.0 / 2023 | implementation language = Go | license = wikipedia:...")
- 00:23, 20 April 2023 Marshall talk contribs created page KamilaLisp (Created page with "{{Infobox array language | array model = Lists | index origin = 0 | function styles = lambda, tacit | numeric types = Multiple, including complex and arbitrary-precision support | released = 2021 | developer = Kamila Szewczyk (palaiologos) | latest release version = 0.2 / 2023 | implementation language = Java | source =...")
- 14:27, 19 April 2023 Marshall talk contribs changed group membership for Finooiigee from (none) to trusted
- 14:25, 19 April 2023 Marshall talk contribs changed group membership for Loke from (none) to trusted
- 15:59, 16 February 2023 Marshall talk contribs blocked BeulahSchenk946 talk contribs with an expiry time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
- 15:58, 16 February 2023 Marshall talk contribs deleted page User:BeulahSchenk946 (Spam: content was: "Then it is actually essential to first construct a viewers, if you prefer to have targeted visitor traffic, enormous perspectives and exposure on YouTube. A YouTube Client is actually an individual that has actually chosen to follow your material and network in maintaining up-to-date for your most current video recordings.<br><br>Have a look at my web s...", and the only contributor was "BeulahSchenk946" ([[User talk:BeulahSchenk94...)
- 19:41, 7 September 2022 Marshall talk contribs blocked DarnellRittenhou talk contribs with an expiry time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
- 19:41, 7 September 2022 Marshall talk contribs blocked RobertGarnsey4 talk contribs with an expiry time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
- 19:41, 7 September 2022 Marshall talk contribs deleted page User:DarnellRittenhou (Spam: content was: "Ouг eleⅽtronic advertising and marketing services are crafted to fulfill the requіrements of small...", and the only contributor was "DarnellRittenhou" (talk))
- 19:41, 7 September 2022 Marshall talk contribs deleted page User:RobertGarnsey4 (Spam: content was: "Our digitaⅼ marketing services are crafted to satіsfy the needs of local businesѕ, web site owners, and en...", and the only contributor was "RobertGarnsey4" (talk))
- 14:46, 31 August 2022 Marshall talk contribs created page Lib Gibson (Stub)