Created
July 19, 2014 06:27
-
-
Save Wesitos/abc605d6757de15b9def to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reset | |
#constantes | |
e = 1e-6 | |
v = 0.98 | |
pd = 4e-8 | |
d = 0.92 | |
#Mierda | |
f(x,y)= (1 - (1- exp(-2*y**2/x)+pd)*(1-exp(-2*((1-exp(-2*y**2/x))/(1-exp(-2*y**2/x)+pd)*(1-d)*(2*v-1))**2)))**x - e | |
#Valor de prueba | |
m_prueba = 2000 | |
set samples 1000 | |
set xrange [0:100] | |
set yrange [-0.01 : 0.1] | |
set term wxt | |
plot f(m_prueba,x),0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment