Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!bu.edu!wang!wdr From: wdr@wang.com (William Ricker) Newsgroups: comp.lang.apl Subject: Re: Rank 0 catenation. Message-ID: Date: 26 Jun 91 17:14:34 GMT References: <1991Jun24.161151.12366@watmath.waterloo.edu> Organization: Wang Labs, Lowell MA, USA Lines: 29 rockwell@socrates.umd.edu (Raul Rockwell) writes: > e =. ,&.>/ a,b,c >but that won't work. This should work: > e =. a ,&.> b ,&.> c Nope. That also gives +---------------+---------------+---------------+ |0 3 12 15 24 27|1 4 13 16 25 28|2 5 14 17 26 29| +---------------+---------------+---------------+ To insert (,&.>) between three arrays of similar size, you can ] e =. ,&.> / > a;b;