baxy77bax has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

I have a question. I R there is function called nlm (Non-Linear Minimization function) and it takes a function and a start parameter. Example:

A <- function(f){ lh(a=f,...(ther parameters)) } B <- function(t){ -log(t(f=t)) } start = (some value) nlm(B,p=c(start))
Is there something simmilar in perl and could someone be so kind to give an example?
Thnx

Replies are listed 'Best First'.
Re: Non-Linear Minimization
by LanX (Saint) on Jan 11, 2017 at 15:34 UTC
Re: Non-Linear Minimization
by toolic (Bishop) on Jan 11, 2017 at 15:30 UTC