Advertisement
FacuValverdi

Método Gráfico- Raíces de ecuaciones no lineales

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