<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
"Strumila, John" wrote:
<blockquote TYPE=CITE>howdy R friends,
<p>Can anyone shed some light on why R is aborting on me?&nbsp; It looks
like it
<br>can't find 'dtrsl'.&nbsp; I've recently upgraded on my HPUX from Rv0.9
to Rv1.0
<p>thanks,
<br>John Strumila
<p>> nlm(f, c(-1, 0, 0), hessian = TRUE, print = 0)
<br>/usr/lib/dld.sl: Unresolved symbol: dtrsl (code)&nbsp; from
<br>/usr/local/lib/R/bin/R.X11</blockquote>
Two possibilities:
<ul>
<li>
Have you pre-defined "f" before using nlm() ?&nbsp; Try something like
this:</li>
</ul>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; > f
&lt;- function(x) sum((x-1:length(x))^2)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> nlm(f, c(-1, 0, 0), hessian = TRUE, print = 0)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
these two lines should generate (I only quote the first two lines of my
outputs):
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
$minimum
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
[1] 1.620172e-27
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
.
<ul>
<li>
If still now working, try to get R 1.0.1.</li>
</ul>

<p><br>Cheers,
<blockquote TYPE=CITE>&nbsp;
<br>ABORT instruction (core dumped)
<br>-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
<br>r-help mailing list -- Read <a href="http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html">http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html</a>
<br>Send "info", "help", or "[un]subscribe"
<br>(in the "body", not the subject !)&nbsp; To: r-help-request@stat.math.ethz.ch
<br>_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._</blockquote>
--
<br>-----------------------------------------------------------------------------------
<br>&nbsp;Ko-Kang Wang
<br>&nbsp;Undergraduate Student
<br>&nbsp;Computer Science/Statistics Double Major
<br>&nbsp;University of Auckland
<br>&nbsp;Auckland 1005
<br>&nbsp;New Zealand
<br>-----------------------------------------------------------------------------------
<br>&nbsp;</html>