Does anyone have the code for this algorithm ? Any C-based programming language would be OK but I prefer C#.
I could try to implement it but I\'m sure I\'m not the f
Try https://www.nuget.org/packages/Budoom.GoalSeek/
Sample usage:
var sc = new SomeCalculation(); //implements interface Budoom.IGoalSeek
var goalSeek = new Budoom.GoalSeek(sc);
var goalSeekResult = goalSeek.TrySeek();
or use the static method and pass the calculation function to it, like this:
var goalSeekResult = Budoom.GoalSeek.TrySeek(Calculate);