From help-request at octave dot org Wed Jan 11 15:27:46 2006 Subject: RE: large input data From: "Frank Palazzolo" To: "'Robert A. Macy'" , "'Hayden Rampadarath'" Cc: Date: Wed, 11 Jan 2006 16:26:08 -0500 Hi, An observation - if you plan on processing the same datasets over and over, I've found it very worthwhile to resave them as binary files, and use those from that then on. Loading of files is much faster once the text parsing is eliminated. -Frank -----Original Message----- From: Robert A. Macy [mailto:macy at california dot com] Sent: Wednesday, January 11, 2006 3:56 PM To: Hayden Rampadarath Cc: help at octave dot org Subject: Re: large input data Similar requirement. Sometimes the data is scooped up from an Excel spread sheet, or sometimes just a lot of terms. I use a text editor (sometimes notepad) to make an ascii data file, dataset.txt. Include "fake" headers at the top of the file [those five lines at the top, describing what the data is] to make it look like a standard ascii style octave file. then use... >> load -force "dataset.txt"; ...to load it in, and overwrite the specific variable. - Robert - On Wed, 11 Jan 2006 18:47:56 +0000 (GMT) Hayden Rampadarath wrote: > Hi, > > i am using GNU Octave version 2.1.71, in Cygwin for my research > project, and have a lot of input data. i would like to know an easier > method than typing them in. Can i do some thing for it to read it from > say notepad, or something?? > > Also, how do i make and save plots using this version?? > > > Thanks > Hayden ------------------------------------------------------------- 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 -------------------------------------------------------------