From help-octave-request at bevo dot che dot wisc dot edu Tue Aug 19 17:32:15 1997 Subject: help with plot From: tarcisio praciano pereira To: help-octave at che dot utexas dot edu Date: Mon, 19 Aug 1996 18:42:01 -0200 help-octave at che dot utexas dot edu (discussion) bug-octave@che.utexas.edu (bug reports) Platforms: Most Unix-like systems that have a working g++/libg++. For graphics, Octave also requires gnuplot. Keywords: matlab, octave, matrix, mathematics, gnuplot Author: jwe at che dot utexas dot edu (John W. Eaton) Maintained-by: johnsonp at nicco dot sscnet dot ucla dot edu Primary-site: ftp.che.utexas.edu Help Why the octave does'nt understand my gplot - line 9 ? How could I define expression so it can gnuplot-display graphics? ***********begining of file interf.data *********************** # data-sheet for Octave, does'nt work for Gnuplot # set term latex; set output 'interf.tex' set title 'graficos de funcoes' set xrange [-10:10]; set yrange [0:3] function y = A (x) 1/(1+((x-4)/5)**2) endfunction function y = B (x) 1/(1+((x+4)/5)**2) endfunction function y = C (x) 1/(1+(x/5)**2) + 0.1*sin(2*x) endfunction # x = (-11:11) gplot -11:11 -20:20 A(x),B(x),C(x) using points; # gplot y=A(x),y=B(x),y=C(x) using points; #A(4) #B(-4) #C(0) # pause -1 Thanks, Tarcisio