Tagged Questions

3
votes
2answers
170 views

Full Singular Value Decomposition in R

In most applications (esp. statistical ones) the thin SVD suffices. However, on occasion one needs the full SVD in order to obtain an orthobasis of the null space of a matrix (and its conjugate). It ...
3
votes
2answers
1k views

How do I obtain the machine epsilon in R?

Is there a constant that stores the machine epsilon in R?
3
votes
4answers
1k views

How to make topographic map from sparse sampling data?

I need to make a topographic map of a terrain for which I have only fairly sparse samples of (x, y, altitude) data. Obviously I can't make a completely accurate map, but I would like one ...
2
votes
3answers
262 views

how can I evaluate the derivative of a spline function in R?

R can generate a spline function using splinefun() in the splines library. However, I need to evaluate this function at its first and second derivatives. Is there a way to do this? for example ...
2
votes
8answers
895 views

Fastest numerical solution of a real cubic polynomial?

R question: Looking for the fastest way to NUMERICALLY solve a bunch of arbitrary cubics known to have real coeffs and three real roots. The polyroot function in R is reported to use Jenkins-Traub's ...
0
votes
1answer
73 views

Efficient use of Choleski decomposition in R

This question is related to this one and this one I have two full rank matrices A1, A2 each of dimension p x p and a p-vector y. These matrices are closely related in the sense that matrix A2 is a ...