From: <cde...@us...> - 2012-03-27 08:21:56
|
Revision: 10074 http://octave.svn.sourceforge.net/octave/?rev=10074&view=rev Author: cdemills Date: 2012-03-27 08:21:45 +0000 (Tue, 27 Mar 2012) Log Message: ----------- - added a comment about specific part of code Modified Paths: -------------- trunk/octave-forge/extra/dataframe/inst/@dataframe/dataframe.m Modified: trunk/octave-forge/extra/dataframe/inst/@dataframe/dataframe.m =================================================================== --- trunk/octave-forge/extra/dataframe/inst/@dataframe/dataframe.m 2012-03-27 08:17:47 UTC (rev 10073) +++ trunk/octave-forge/extra/dataframe/inst/@dataframe/dataframe.m 2012-03-27 08:21:45 UTC (rev 10074) @@ -272,6 +272,8 @@ the_line = cellfun (@(x) sscanf (x, "%f", locales), dummy, \ 'UniformOutput', false); else + %# this code require a patch to src/file-io.cc in main + %# Octave tree the_line = sscanf (dummy, "%f", locales); the_line = cellfun (@(x) x{1}, the_line, 'UniformOutput', false); endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |