Restricting domain of values fzero will try
53 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alexander Holmes
am 30 Okt. 2018
Kommentiert: Alexander Holmes
am 30 Okt. 2018
I am using fzero along with an implementation of the gillespie algorithm to determine a parameter (I know the vale of a parameter at steady state, but now I want it proportional to another quantity, and I am using fzero to determine this constant of proportionality, alpha).
However, the simulation only works if alpha is positive, otherwise we get negative rates which mess everything up. From what I can tell, fzero is trying negative values of alpha when trying to find the zero. Is there any way I can restrict fzero to only use positive values?
0 Kommentare
Akzeptierte Antwort
Matt J
am 30 Okt. 2018
Bearbeitet: Matt J
am 30 Okt. 2018
Specify the search interval [xlower, xupper] to include only non-negative values.
fzero(fun,[xlower, xupper])
3 Kommentare
Matt J
am 30 Okt. 2018
You could make a change of variables in your function like s^2=alpha. An unconstrained search over s is equivalent to a search of non-negative alpha.
Weitere Antworten (1)
Matt J
am 30 Okt. 2018
You could make a change of variables in your function like s^2=alpha. An unconstrained search over s is equivalent to a search of non-negative alpha.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!