You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function H is just a linearization of a 10*10 numpy matrix. Computing one point of H takes a few minutes, so I did it for 100 points and stored it in H_str. Now, I used the fact that H is continuous to have an approximation for every value of (x,y).
I know that the nullclines exists, but Pydstool seems to fail to find them.
Any idea of what I could do?
Thanks a lot.
The text was updated successfully, but these errors were encountered:
Hi. You now have dmModel.Rhs as a callable python function. I think you should first convince yourself that your implementation of H has the desirable properties (continuity, smoothness, well-conditioned, etc.) that you expect using some manual investigation. I'd plot a bunch of things related to the whole space and also locally to the FPs and perform some numerical analysis. It's likely that you're making an assumption about H that is false in this implementation, or there is somehow an actual mistake in the coding. These are the usual reasons that continuation is failing.
Hi there,
and thanks again for this amazing package. I have trouble using a custom function, and I have this error which I don't know how to handle.
My system is pretty simple, here is a sample of my code:
The function H is just a linearization of a 10*10 numpy matrix. Computing one point of H takes a few minutes, so I did it for 100 points and stored it in H_str. Now, I used the fact that H is continuous to have an approximation for every value of (x,y).
I know that the nullclines exists, but Pydstool seems to fail to find them.
Any idea of what I could do?
Thanks a lot.
The text was updated successfully, but these errors were encountered: