Re: [Bug-apl] Lambda: Local vars disapear at load or save.

2016-08-24 Thread Juergen Sauermann
Hi Xtian, thanks, fixed in SVN 787. /// Jürgen On 08/23/2016 08:59 PM, Christian Robert wrote: precision←{∊'was' was⊣∆prec←⍵⊣was←∆prec;was}   ⎕cr 'precision' λ←λ1 ⍵;was

[Bug-apl] error in each

2016-08-24 Thread Xiao-Yong Jin
This shouldn’t be an error: ⍎¨'0' ' ' VALUE ERROR μ-Z__LO_EACH_B[2] μ-Z[μ-N]←⊂μ-LO⊃μ-B[μ-N] ^

Re: [Bug-apl] error in each

2016-08-24 Thread Christian Robert
⍎' ' ⍎'0' 0 ⍎ ¨ "01" 0 1 ⍎ ¨ "0 " VALUE ERROR μ-Z__LO_EACH_B[2] μ-Z[μ-N]←⊂μ-LO⊃μ-B[μ-N] ^ D←{24 ⎕cr ⍵} D ⍎' ' VALUE ERROR D⍎' ' ^ D ⍎'0' ┌─┐ │0│ └─┘ Looks like ⍎' ' return absolutely nothing. Xtian. On 2016-08-24 11:46,

[Bug-apl] stacked rank operator

2016-08-24 Thread Xiao-Yong Jin
This should work, (2 3 5 4⍴⍳24)(+⍤1⍤¯1)(2 4⍴⍳8) VALUE ERROR μ-Z__A_LO_RANK_X7_B[4] →(μ-X7≢¯1)⍴μ-WITH_AXES ^ You could use the axis operator generically (2 3 5 4⍴⍳24){⍺+[1,(⍴⍴⍺)⌈⍴⍴⍵]⍵}(2 4⍴⍳8) but the rank operator seems cleaner. Best, Xiao-Yong

Re: [Bug-apl] stacked rank operator

2016-08-24 Thread Louis de Forcrand
(2 3 5 4$i.24)(+"1"_1)(2 4$i.8) 0 2 4 6 4 6 8 10 8 10 12 14 12 14 16 18 16 18 20 22 20 22 24 26 0 2 4 6 4 6 8 10 8 10 12 14 12 14 16 18 16 18 20 22 20 22 24 26 0 2 4 6 4 6 8 10 8 10 12 14 16 18 20 22 20 22 24 26 24 26 28 30 4 6 8 10 8 10 12 14 12 14 16 18 16 18 20 22 20 22 24 26 24 26 28 30

[Bug-apl] Two things I have to share

2016-08-24 Thread Christian Robert
First my "df" function ∇z←df;names;func;lambda;t ⎕pw←1 names←((⊂[⎕io+1]⎕nl 3 4)~¨' ')~ ⊂"df" lambda←({'λ'=↑⎕cr ⍵}¨names)/names →(2> ⍴lambda)/nosrtl lambda←{⍵[⎕av⍋⊃⍵]} lambda nosrtl: func←names~lambda →(2>⍴func)/nosrtf func←{⍵[⎕av⍋⊃⍵]} func nosrtf: func←{⍵ (22 ⎕cr ⎕cr ⍵)} ¨ func lambda←{⍵,'←{'

[Bug-apl] Local sysvars in lambdas

2016-08-24 Thread Louis de Forcrand
∇Z←F N;⎕IO [1] Z←⍎(N>1)⊃'N' 'N×F N-1'⊣⎕IO←0∇ F 6 720 f←{⍎(⍵>1)⊃'⍵' '⍵×f ⍵-1'⊣⎕IO←0;⎕IO} f 6 SYNTAX ERROR λ1[1] λ←⍎(⍵>1)⊃'⍵' '⍵×f ⍵-1'⊣⎕IO←0;⎕IO ^^ ⎕IO 0 )SIC ⎕IO←1 f←{⍎(⍵>1)⊃'⍵' '⍵×⍙ ⍵-1'⊣⎕IO←0;⎕IO} f 6 VALUE

Re: [Bug-apl] Two things I have to share

2016-08-24 Thread Christian Robert
In my original "df" function I had "⎕pw" localized, but even after setting it to 1 inside the function it looks like the default (80) was still was in effect while executing. Xtian. On 2016-08-24 20:52, Christian Robert wrote: First my "df" function ∇z←df;names;func;lambda;t ⎕pw←1 nam

Re: [Bug-apl] Local sysvars in lambdas

2016-08-24 Thread Christian Robert
try ⎕IO *after* )sic the fact is that when a function is interruped, you see "by the last" interrupted function. Until you type )sic or )reset my 2 cents, as usual, I may be wrong. Xtian. On 2016-08-24 21:09, Louis de Forcrand wrote: ∇Z←F N;⎕IO [1] Z←⍎(N>1)⊃'N' 'N×F N-1'⊣⎕IO←0∇