06-27-2016 01:50 PM
06-27-2016 02:13 PM
Altenbach,
The optimization of my model is a whole seperate beast, I'm simply just trying to stop the 'Simplex.VI' early if I don't want to wait for the next iteration. The reason I'm iterating the 'Simplex.vi' is becuase the solution is ill-formed and to arrive at the best possible solution, I take the outputs of each fitting and then feed them back in as initial guesses until the output doesn't change anymore.
06-27-2016 03:06 PM
@DrNO23 wrote:... becuase the solution is ill-formed and to arrive at the best possible solution, I take the outputs of each fitting and then feed them back in as initial guesses until the output doesn't change anymore.
That does not guarantee any "best possible solution" and is pretty pointless. All you get is a new simplex if size=1 from the new starting point, which might be a poor choice to begin with. Maybe you want to start form several grid points instead, to see where it converges to. How many adjustable parameters do you have?