10
votes
10answers
909 views
Test if a floating point number is an integer
This code works (C# 3)
double d;
if(d == (double)(int)d) ...;
Is there a better way to do this?
For extraneous reasons I want to avoid the double cast so; what nice ways exist other than this? …
8
votes
5answers
1k views
Is one’s complement a real-world issue, or just a historical one?
Another question asked about determining odd/evenness in C, and the idiomatic (x & 1) approach was correctly flagged as broken for one's complement-based systems, which the C standard allows for.
…
7
votes
9answers
978 views
Derivatives in C/C++?
I have some expressions such as x^2+y^2 that I'd like to use for some math calculations. On of the things I'd like to do is to take partial derivatives of the expressions. So if f(x,y) = x^2 + y^2 …
7
votes
5answers
928 views
What is the best Java numerical method package?
I am looking for a Java-based numerical method package that provides functionality including:
Solving systems of equations using different numerical analysis algorithms.
Matrix methods (e.g., …
7
votes
7answers
2k views
Open source alternative to matlab’s fmincon function?
Does anyone know of an open-source alternative to Matlab's fmincon function for constrained linear optimization? I'm rewriting a matlab program to use Python / numpy / SciPy and this is the only …
6
votes
4answers
835 views
Solving nonlinear equations numerically
Hello,
I need to solve nonlinear minimization (least residual squares of N unknowns) problems in my Java program. The usual way to solve these is the Levenberg-Marquardt algorithm. I have a couple of …
6
votes
6answers
479 views
When to use Fixed Point these days
For intense number-crunching i'm considering using fixed point instead of floating point. Of course it'll matter how many bytes the fixed point type is in size, on what CPU it'll be running on, if i …
6
votes
4answers
670 views
Computationally efficient three dimensional arrays in C
I am trying to solve numerically a set of partial differential equations in three dimensions. In each of the equations the next value of the unknown in a point depends on the current value of each …
5
votes
5answers
1k views
Least Squares C# library
I am looking to perform a polynomial least squares regression and am looking for a C# library to do the calculations for me.
I pass in the data points and the degree of polynomal (2nd order, 3rd …
4
votes
7answers
234 views
How to use TDD correctly to implement a numerical method?
I am trying to use Test Driven Development to implement my signal processing library. But I have a little doubt: Assume I am trying to implement a sine method (I'm not):
Write the test (pseudo-code)
…
4
votes
6answers
398 views
Identifying common periodic waveforms (square, sine, sawtooth, …)
Without any user interaction, how would a program identify what type of waveform is present in a recording from an ADC?
For the sake of this question: triangle, square, sine, half-sine, or sawtooth …
4
votes
5answers
457 views
How do I determine the standard deviation (stddev) of a set of values?
I need to know if a number compared to a set of numbers is outside of 1 stddev from the mean, etc..
4
votes
2answers
252 views
Efficient evaluation of hypergeometric functions
Does anyone have experience with algorithms for evaluating hypergeometric functions? I would be interested in general references, but I'll describe my particular problem in case someone has dealt …
4
votes
4answers
228 views
What is the best book on numerical methods?
I need to use some heavy-duty numerical methods - quadrature, interpolation, ODE solution with expensive derivative terms, etc. What's the best book on the subject?
I will be using packages where I …
3
votes
8answers
223 views
Java performance in numerical algorithms
hello again
I am curious about performance of Java numerical algorithms, say for example matrix matrix double precision multiplication, using the latest JIT machines as compared for example to hand …
