octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #49546] importdata() fails for textfiles with


From: Avinoam Kalma
Subject: [Octave-bug-tracker] [bug #49546] importdata() fails for textfiles with missing values
Date: Sat, 17 Dec 2016 20:34:29 -0000
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36

Follow-up Comment #1, bug #49546 (project octave):

This problem is caused probably by changeset
[http://hg.savannah.gnu.org/hgweb/octave/rev/a93887d7f0da] which
fix a bug in dlmread to Use EmptyValue option correctly.

Now that  EmptyValue is used correctly, the lines


  if (delimiter == " ")
    output.data = dlmread (fname, "", header_rows, header_cols,
                           "emptyvalue", NA);
  else
    output.data = dlmread (fname, delimiter, header_rows, header_cols,
                           "emptyvalue", NA);


cause NA to be written in the empty place, and that causes the error.

The NA can be replaced by 0, and then you get
1 2
1 0

or by NaN, and then you get
1 2
1 NaN

but you do not get an error.


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?49546>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]