Hi enztec,
⎕FIO comes with file handles 0 (stdin), 1 (stdout),
and 2 (stderr) open
so you can read/write to them with any ⎕FIO function that
has a file handle
argument (read/write/fread/fwrite/etc.) Note that these handles
are the OS
file
Hi,
I have some bigger data collections to analyze.
Zeros are represented as .000 within the records.
Reading the files with ⎕FIO[49], I get a vector of vector with numbers.
⊃⍎¨ file should return the matrix of numbers.
⍎¨ fails with RANK ERROR on .000
Short extract:
⍎¨⊂'.000'
RANK ERROR+
μ-
Hi Hans-Peter,
thanks, fixed in SVN 1646.
Best Regards,
Jürgen
On 1/29/23 10:15 PM, Hans-Peter Sorge
wrote:
Hi,
I have some
bigger data collections to analyze.
Zeros ar