[Bug-apl] Implementing realtime variable viewer support

2014-02-11 Thread Elias Mårtenson
I was watching this video where they take advantage of the )ED command in Dyalog which supports realtime updated views of a variable: http://youtu.be/a9xAKttWgP4?t=5m2s At 5:02 into the above video, the presenter types )ED variablename which opens a window that with the content of a variable. This

Re: [Bug-apl] Near-real numbers not handled properly

2014-02-11 Thread Juergen Sauermann
Hi, thanks, fixed in SVN 117. /// Jürgen On 01/30/2014 10:23 PM, Kacper Gutowski wrote: Hi, It seems that functions requiring “near-real numbers” as arguments throw DOMAIN ERROR when given a value represented internally as complex even if imaginary part is exactly equal zero. 1 > 0J0

Re: [Bug-apl] Importing large arrays into GNU APL runtime

2014-02-11 Thread Nick Lobachevsky
I would try to import the matrix in pieces. Try something like mat←951192 10⍴ '' '' '' '' '' '' '' '' 0 0 then import the columns separately, i.e. mat[;1]←(↓col1)~¨' ' mat[;2]←(↓col2)~¨' ' where col1, col2, and friends are simple character matrices containing data for those c

[Bug-apl] Importing large arrays into GNU APL runtime

2014-02-11 Thread Elias Mårtenson
I wanted to use GNU APL to work with a fairly large dataset. The data is statistical output from a benchmark and it's 951192 rows and 10 columns. 8 of the columns are text (around 10 or so characters each) and the remaining two are numeric. The data is in a single text file. I have had no end of t