From help-octave-request at bevo dot che dot wisc dot edu Tue Jan 20 00:58:34 1998 Subject: Graphics in Octave From: "Robin M. Braun" To: Date: Tue, 20 Jan 1998 08:58:06 +0200 Help Please, I need to get Octave to create a jpg or gif file (via gnuplot). I can think of piping a pbm or eps file into a converter, but I believe there a cleaner way. Many thanks Rob Dr. Robin M. Braun ZR1RMB Department of Electrical Engineering, University of Cape Town, Private Bag, Rondebosch, 7700, South Africa Phone:+27+21+650-2810 Phone(h):+27+21+75-9280 Fax:+27+21+650-3465 Internet : rmbraun at eleceng dot uct dot ac dot za http://www.ee.uct.ac.za/~rmbraun -----Original Message----- From: John W. Eaton To: song tae-sun Cc: help-octave at bevo dot che dot wisc dot edu Date: Tuesday, January 20, 1998 5:18 AM Subject: Unidentified subject! >On 20-Jan-1998, song tae-sun wrote: > >| Dear help-octave-manager, >| >| To use Octave System, I want your help. >| The formatted data file is made by Fortran program, the format is >| F4.1,1X,F4.1,1X,F7.2. The data is matrix type. >| In Octave system, how can I do in reading the matrix data from the >| external file. >| >| Sincerely yours, >| T.S. Song >| >| The data file is attached. >| datafile ------- >| .0 .0 .00 >| 1.0 .0 .00 >| 2.0 .0 .00 >| ... > >You should be able to load this file using a command like > > octave:13> load foo.dat > >(the data will be put in the variable foo, named after the file >name). This should work in all 2.0.x versions, as far as I know. > >jwe >