Re: [Bug-apl] Outer product problems

2015-03-15 Thread Juergen Sauermann
Hi Darek, I believe the problems below should be fixed in SVN 562:     ∘.{⍺×⍵}/ (5 2) (7 6 4)  35 30 20  14 12  8     K { { ⍺ ∘.{| ⍺ - ⍵ + 0J1} ⍵}/ {⍵/⍳⍴⍵}¨⍺ ⍵} L←K←1 1 0 1  1

Re: [Bug-apl] Outer product problems

2015-03-07 Thread Juergen Sauermann
Hi Darek, thanks, should be fixed now. SVN 558. /// Jürgen On 03/06/2015 12:54 PM, Darek Cidlinsky wrote: Ave, I have two problems with outer product in GNU APL; one of them is maybe a bug, the other is nearly defini

Re: [Bug-apl] Outer product problems

2015-03-06 Thread Juergen Sauermann
Hi Darek, a preliminary analysis shows that the EOC (end of context) handler for, say, ∘,FOO is overridden by the EOC handler for /. Therefore   (5 2) ∘.FOO (7 6 4) succeeds while   ∘.×/ (5 2) (7 6 4)

[Bug-apl] Outer product problems

2015-03-06 Thread Darek Cidlinsky
Ave, I have two problems with outer product in GNU APL; one of them is maybe a bug, the other is nearly definitely a bug. If I use the product with a standard function like ×, everything works as it should: ∘.×/ (5 2) (7 6 4) 35 30 20 14 12 8