funzioni grafiche varie
funzioni grafiche da listati scritti con NOTES su grafilibro.txt poi richiamato con GnuPlot grafilibro1.txt
set title "Grafico di una parabola" -1,1
set xrange [-3:2]
set yrange [0:9]
plot x**2 + 2*x + 1
pause -1 # premi INVIO per continuare
set title "Funzione valore assoluto" -1,1
set xrange [-2:2]
set yrange [0:2]
plot abs(x)
pause -1
set title "Funzione valore assoluto" -3,1
set xrange [-5:1]
set yrange [0:5]
plot abs(x+3)
pause -1
vedi grafici in sequenza
set title "Valore assoluto di un'espressione" -1,1
set xrange [-2:4]
set yrange [0:12]
plot abs(-x**2+2*x+3)
pause -1
set title "La funzione segno" -1,1
set xrange [-2:2]
set yrange [-2:2]
plot sgn(x) with points
pause -1
set title "La funzione parte intera" -1,1
set xrange [-3:3]
set yrange [-3:3]
plot floor(x) with points
pause -1
set title "Potenze ad esponente pari" -1,1
set xrange [-1.5:1.5]
set yrange [0:3]
set function style lines
plot x**2, x**4, x**6
pause -1
set title "Potenze ad esponente dispari" -1,1
set xrange [-1.5:1.5]
set yrange [-3:3]
set function style lines
plot x**3, x**5, x**7
pause -1
set title "Radice quadrata e funzione quadrato" 0, 1
set xrange [0:2]
set yrange [0:4]
set function style lines
plot sqrt(x), x**2
pause -1
set title "Radice cubica e funzione cubo" -1,1
set xrange [-1.5:1.5]
set yrange [-3:3]
set function style lines
plot x**3, (abs(x))**(1./3)*sgn(x)
pause -1
ritorna