The numerical-stability tag has no wiki summary.
8
votes
5answers
231 views
How do I check and handle numbers very close to zero
I have some math (in C++) which seems to be generating some very small, near zero, numbers (I suspect the trig function calls are my real problem), but I'd like to detect these cases so that I can ...
8
votes
1answer
402 views
Java code optimization leads to numerical inaccuracies and errors
I'm trying to implement a version of the Fuzzy C-Means algorithm in Java and I'm trying to do some optimization by computing just once everything that can be computed just once.
This is an iterative ...
7
votes
4answers
448 views
In Python small floats tending to zero
Hey!
I couldn't find an answer to this problem so I'm asking it here:
I have a Bayesian Classifier programmed in Python, the problem is that when I multiply the features probabilities I get VERY ...
4
votes
1answer
358 views
Good algorithm for calculating ln(1-x) for small (and occasionally large) x
I'm looking for an algorithm to calculate ln(1-x). x is often small (<0.01), but occasionally it might be larger. Algorithm needs to be accurate, and not too slow. I'd rather not use library for ...
4
votes
3answers
564 views
positive semi-definite matrices and numerical stability?
i'm trying to do factor analysis for a co-occurrence matrix(C) , which is computed from the term-document matrix(TD) as follows:
C=TD*TD'
In theory C should be positive semi-definite , but it isn't ...
4
votes
2answers
141 views
Strategies for debugging numerical stability issues?
I'm trying to write an implementation of Wilson's spectral density factorization algorithm [1] for Python. The algorithm iteratively factorizes a [QxQ] matrix function into its square root (it's sort ...
1
vote
2answers
71 views
Numeric instability
I'm doing some Linear programming exercises for the course of Algorithms, and in doing this I'm solving manually many operations with fractions. In doing this I realized that a human being don't ...
0
votes
2answers
100 views
Articles on analysis of mixed precision numerical algorithms?
Many numerical algorithms tend to run on 32/64bit floating points.
However, what if you had access to lower precision (and less power hungry) co-processors? How can then be utilized in numerical ...