
Ejemplo de un grfico sencillo

octave:15> t = linspace(0,2*pi,100);
octave:16> x = sin(t);
octave:17> plot(t,x)
octave:18> grid
octave:19> replot

