Está en la página 1de 1

En GNU - Octave (Ventana de Comandos):

>> x=[];
>> x(1)=1;
>> for i=1:3
x(i+1)=x(i)-1/3;
end
>> x

En GNU - Octave (Editor):

x=linspace(0.995,1.005,100);
f1=(1-x.^2).^7;
plot(x,f1,'b');
grid on;
hold on;
f2=1-7*x.^2+21*x.^4-35*x.^6+35*x.^8-21*x.^10+7*x.^12-x.^14;
plot(x,f2,'r')

function biseccion(funcion,a,b,d)

function reglafalsa(funcion,a,b,tol)

También podría gustarte