Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Autor: Docente curso métodos númericos
- //Fecha: 7 de Septiembre 2018
- //Ejemplo de clase
- clear all
- function f=ecuacionParacaidas(g,m,fr,t)
- f = m*g*(1-exp(-fr*t/m))/fr
- endfunction
- g = 9.8
- m = 68.1
- fr = 12.5
- // valor-inicial:incremento:valor-final
- t = 0:1:20
- resultado =ecuacionParacaidas(g,m,fr,t)
- plot(t,resultado,"r-")
- xtitle("Velocidad del paracaidista con respecto al tiempo")
- xlabel("Tiempo (s)")
- ylabel("Velocidad (m/s)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement