Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ///METODO GRAFICO EN SCILAB PARA DETERMINAR LOS RANGOS.
- x=[0:0.1:2];
- fx=exp(-x^3) -2*x + 1;
- subplot(121)
- plot2d(x,fx,leg="$f(x)=exp(-x^3)-2*x + 1$")
- xgrid(1)
- subplot(122)
- plot2d(x,fx,5,leg="$f(x)=exp(-x^3)-2*x+1$",rect=[0,-3,1,3])
- xgrid(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement