help-octave
[Top][All Lists]
Advanced

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

Re: reading ascii matrix


From: Alex Verstak
Subject: Re: reading ascii matrix
Date: Fri, 9 Feb 2001 14:11:10 -0500 (EST)

Add this header to your file and read it with Octave's load:

# name: x
# type: matrix
# rows: 2800000
# columns: 2

For a dataset of this size, C is probably better...

=alex


On Fri, 9 Feb 2001, Ben Bauer wrote:

> Info:
> Octave, version 2.1.9 (i686-pc-linux-gnu). 
> (PIII 550 with 256M ram)
> Linux  2.2.16
> egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)  
> 
> 
> 
> I have a plain ascii file of 2 columns and
> approx 2.8 million rows that I need to do some
> statistics on. In my octave script I have 
>   
>  for i=1:p
>   [a(i),b(i)]=fscanf(myfile,"%f %f","C"); 
>   ...
> 
> where p is the number of records in the file.
> 
> 
> This program has been reading in the data for
> 2 days now.  Currently just less than half the
> data are read in according to a print command I
> have in the loop.  There must be a better way!
> The the entire script runs in about 1.5 minutes
> for a shorter file of 20000 data pairs, with the
> majority of the time taken in reading the data.
> 
> 
> 
> Any useful suggestions would be appreciated.  Thanks.
> 
> 
> 
> -------------------------------------------------------------
> Octave is freely available under the terms of the GNU GPL.
> 
> Octave's home on the web:  http://www.octave.org
> How to fund new projects:  http://www.octave.org/funding.html
> Subscription information:  http://www.octave.org/archive.html
> -------------------------------------------------------------
> 
> 



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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