fminbound

D

darkside

Hello everyone:
I'm new using scipy, so I'm sorry if any of my questions are silly.

I'm trying to find the maxima, absolut and local, of a function, in order to
fit an exponencial curve and get de exponecial argument.

My function if the soluction of a couple equations system:

def derivs3(x,t,gamma,omega,dl):
d1 = omega*x[2] - gamma *x[0]
d2 = dl*x[2] - (gamma/2.)* x[1]
d3 = -omega *x[0] - dl*x[1] - (gamma/2.)* x[2] + (omega/2.)
return d1,d2,d3
def solucion(a,t,gamma, omega, dl):
sol=odeint(derivs3,a,t,(gamma,omega,dl))
return sol

The case I'm interesting in, the soluction have the form of a sin*exp, so I
want to find the function that envolves it, a exponencial function.
To do this, I can find the maximas, and fit them, so I use:

def g4(t1):
sol2=odes.solucion((0.5,0,0),t1,0.5,5,0)
return sol2[:,0]


x_max = optimize.fminbound(g4,0,2)

To use fminbound, I need a function that returns only a single array, so I use
de g4 function.
I use (0,2) as bounds.
The problem I have is that the return is:

x_max
1.9999959949686341

That aren't the maximas in the interval.
If I change the interval:

x_max = optimize.fminbound(g4,0.1,4)
x_max
3.9999945129622403

And so on.

I don't know what I'm doing wrong, so if everyone can help, I'm going to be
really happy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,610
Members
45,255
Latest member
TopCryptoTwitterChannels

Latest Threads

Top