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
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
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
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