Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hello everybody.
How can I define constraints for the genfit routine?
in the attached program, there is "genfit" routine inside the function f(inp). Where should I define the constraint b1>0, b2>0 etc. ?
Thank you in advance
Solved! Go to Solution.
You can't use constraints with genfit. Use minerr instead. Note that constraints in minerr are soft constraints, and are simply minimized along with the other residuals. To make them hard constraints you must weight them very heavily.
Minerr is a lot more flexible than genfit, and often easier to set up.
You can't use constraints with genfit. Use minerr instead. Note that constraints in minerr are soft constraints, and are simply minimized along with the other residuals. To make them hard constraints you must weight them very heavily.
Minerr is a lot more flexible than genfit, and often easier to set up.
Thank you Richard. Could you please explain about the "weight" of the constraint. How does it work and how I can find the wight factor for each parameter or constraint?