-1
votes
1answer
94 views
how do tell if its better to standardize your data matrix first when you do principal component analysis in R ?
Hi guys ,
Im trying to do principal component analysis in R . There is 2 ways of doing it , I believe.
One is doing principal component analysis right away the other way is st …
1
vote
2answers
49 views
polynomial evaluation accuracy, multiplication versus division
let us say I have have polynomial in x, divided by a power of x:
p = (a + x(b + x(c + ..)))/(x**n)
efficiency aside, which would be more accurate computation numerically, the ab …
5
votes
8answers
298 views
Minimization of f(x,y) where x and y are integers
Hi
I was wondering if anyone had any suggestions for minimizing a function, f(x,y), where x and y are integers. I have researched lots of minimization and optimization techniques …
0
votes
8answers
272 views
Algorithm for multidimensional optimization / root-finding / something
I have five values, A, B, C, D and E.
Given the constraint A + B + C + D + E = 1, and five functions F(A), F(B), F(C), F(D), F(E), I need to solve for A through E such that F(A) …
2
votes
4answers
367 views
How to do numerical integration with quantum harmonic oscillator wavefunction?
How to do numerical integration (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand ar …
5
votes
4answers
1k views
Signal processing library in Java?
I'd like to compute power spectral density of time series; do some bandpass, lowpass, and highpass filtering; maybe some other basic stuff.
Is there a nice open-source Java librar …
0
votes
6answers
346 views
Using Taylor Series to Avoid Loss of Precision
I'm trying to use Taylor series to develop a numerically sound algorithm for solving a function. I've been at it for quite a while, but haven't had any luck yet. I'm not sure what …
1
vote
3answers
363 views
How to find mantissa length on a particular machine?
I'm wanting to find the number of mantissa digits and the unit round-off on a particular computer. I have an understanding of what these are, just no idea how to find them - thoug …
2
votes
3answers
321 views
Best algorithm for avoiding loss of precision?
A recent homework assignment I have received asks us to take expressions which could create a loss of precision when performed in the computer, and alter them so that this loss is …
