Hi Elias,
I believe you need to disclose (⊃) the outer vector:
Z←(1 2 3) (4 5 6) (7 8 9)
Z
1 2 3 4 5 6 7 8 9
⊃Z
1 2 3
4 5 6
7 8 9
/// Jürgen
On 01/18/2017 05:52 PM, Elias Mårtenson
wrote:
Thanks, I changed my function to use the new FIO 49, and
the resuolt is much more compact:
∇Z ← pattern read_csv_n filename
Z← {pattern convert_entry¨ (⍵≠' ') ⊂ ⍵}¨ ⎕FIO[49] filename
∇
It's a bit faster too, as this version runs in 11 seconds.
However, the result is not entirely correct, as this
version creates a 1-dimensional array where each element is an
array consisting of the values for one row.
Is there some way I can use EACH to map over the elemts and
generate a two-dimensional array?
Regards,
Elias
|
- Re: [Bug-apl] Performance problems when constructing lar... Juergen Sauermann
-