|
From: | Juergen Sauermann |
Subject: | Re: [Bug-apl] Correct Syntax for HTML∆xbox ? |
Date: | Wed, 14 Oct 2015 13:22:42 +0200 |
User-agent: | Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 |
Hi Alex, in the HTML context, a box is a vector of (enclosed) lines. It is not a classical 2-dimensional APL value. This is because a vector of enclosed lines is more appropriate than a 2-dimensional matrix when the line-lengths differ considerably (like in HTML). So you may want to try this: )COPY 5 HTML ⎕←⊃ A←'A1' 'A2' 'A3' ⍝ "Matrix" with 3 rows and 2 columns A1 A2 A3 ⎕←⊃ B←'BB1' 'BB2' ⍝ "Matrix" with 2 rows and 3 columns BB1 BB2 ⎕←⊃ A HTML∆xbox B A1BB1 A2BB2 A3 /// Jürgen On 10/14/2015 01:01 AM,
address@hidden wrote:
|
[Prev in Thread] | Current Thread | [Next in Thread] |