Advertisement
relv1008

Untitled

May 24th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // Solución parte a del laboratorio 2
  2. // Obtener la gráfica de la función correspondiente a la ecuación.
  3.  
  4. //Situar los valores de X a graficar
  5. exec('commondata.sci', -1);
  6.  
  7. // Calcular los valores de y a graficar
  8. exec('funciones.sci', -1);
  9. y=funcion(x);
  10.  
  11. //Realizar el grafico
  12. plot(x,funcion(x));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement