Issue following find_eqpt documentation #1053
-
I'm trying to use There are a couple of ways that I can't figure out how to use Also, it doesn't seem like
Depending on how I formulate the arguments, I get an input/output mismatch error, or the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
What you have looks correct. If you look inside the code at the definition of
The I did a run of your above using
and it ran OK. If you post what you are using for In terms of including bounds or constraints: that is not supported, but I'm not sure it would help. The |
Beta Was this translation helpful? Give feedback.
-
One possibility, which we do in other places, is to create a parameter If we add It still seems like setting |
Beta Was this translation helpful? Give feedback.
The issue is that the problem I desire to solve is over-constrained. I get the intended result if I change the line in
find_eqpt
that callsroot
toresult = root(rootfun, z0, method='lm')
, adding the "least squares method" designator to the args.Does it make sense for
find_eqpt
to do this ifnum_constraints > num_freedoms
?