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
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
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)
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