R/solveL2.R

Defines functions solveL2

Documented in solveL2

solveL2 <- function(phi,y,T,x0,lambda=0.1) {
  # Part of R1Magic by mehmet.suzen@physics.org
  return( nlm(objectiveL2, p=x0, T=T, phi=phi, y=y, lambda=lambda ) )
}
msuzen/R1magic documentation built on Aug. 31, 2023, 1:20 p.m.