Could anyone show me a sample code to use NelderMeadSolver class in F#?
For example, I want to minimize the following function: F(X, Y)
F = (X-1)^2 + (y-1)^2 where 0< X < 2 , 0< Y < 2 Answer is obviousely X = 1, Y = 1
I found an example for C#:
http://msdn.microsoft.com/en-us/library/hh404040(v=VS.93).aspx
I would appreciate very much if someone can give me simple F# code to minimize the function above. Thank you.