Xiaodong Jin <[EMAIL PROTECTED]> writes: > I typed the following commands but it still use maxiter=50 after the 2nd > command: > > nls.control(maxiter = 1000) > nls(......) > > Thanks!
You need nlc <- nls.control(maxiter = 1000) nls(..., control=nlc) And yes, I suppose both help pages could be clearer about this... -- O__ ---- Peter Dalgaard Ă˜ster Farimagsgade 5, Entr.B c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - ([EMAIL PROTECTED]) FAX: (+45) 35327907 ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
