문제

I am using quasi newton algorithm(Numerical recipes) for minimization in which i have to assign the variables. I selected some variables but i do not know those are good scale up variables. Is anybody knows how to scale up the good variable. I have a c-code with function(f(x)) and its gradients and also quasi newton algorithm code.

Thank you in advance.

도움이 되었습니까?

해결책

I think in most cases you don't need scaling. But if you have the case of parameters differing by orders of magnitude, scaling maybe worthwhile. In that case I would scale the parameters by the first guess. E.g. if you can specify the starting point and it is not terribly far off of the expected true value, it should also provide reasonable scaling.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top