Tagged Questions
The numerical tag has no wiki summary.
23
votes
4answers
815 views
Any decent alternatives to Numerical Recipes?
I'd like an up-to-date overview of numerical methods with working code written in any programming language (the higher level the better).
Numerical Recipes was good in this sense when it was first ...
23
votes
9answers
1k views
Scientific Library Options for C or C++
I'm in the process of choosing a scientific library to use as a basis for a project. I need to do a lot of statistical, linear algebra, and signal processing tasks, and I figured there are probably ...
16
votes
7answers
627 views
How to write fast (low level) code?
I would like to learn more about low level code optimization, and how to take advantage of the underlying machine architecture. I am looking for good pointers on where to read about this topic.
More ...
14
votes
3answers
643 views
How do I type a floating point infinity literal in python
How do I type a floating point infinity literal in python?
I have heard
inf = float('inf')
is non portable. Thus, I have had the following recommended:
inf = 1e400
Is either of these ...
13
votes
6answers
1k 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 ...
12
votes
7answers
4k 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..
11
votes
5answers
6k 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 ...
11
votes
10answers
2k 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? ...
11
votes
8answers
6k views
Open source alternative to MATLAB's fmincon function?
Is there 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 function I ...
10
votes
6answers
892 views
The speed of .NET in numerical computing
In my experience, .net is 2 to 3 times slower than native code. (I implemented L-BFGS for multivariate optimization).
I have traced the ads on stackoverflow to
http://www.centerspace.net/products/
...
9
votes
1answer
202 views
Parallelism: Subtly different floating point results?
I'm trying to debug my parallelism library for the D programming language. A bug report was recently filed that indicates that the low-order bits of some floating point operations that are performed ...
9
votes
2answers
2k views
Does JavaScript have double floating point number precision?
I know it's an odd question, but does JavaScript have the capacity to work with double's as opposed to single floats? (64 bit floats vs. 32 bits.)
9
votes
6answers
3k 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 ...
8
votes
5answers
474 views
What's a good way to add a large number of small floats together?
Say you have 100000000 32-bit floating point values in an array, and each of these floats has a value between 0.0 and 1.0. If you tried to sum them all up like this
result = 0.0;
for (i = 0; i < ...
8
votes
2answers
1k views
Any open source library for sparse linear algebra in OpenCL?
I am looking for some sparse linear algebra OpenCL kernels such as blas vector/vector operations and matrix / vector operations but with sparse data structures. Ideally that library would feature most ...
8
votes
9answers
8k 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 ...
8
votes
6answers
2k 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
2answers
304 views
Numerical instability FFTW <> Matlab
I am trying to numerically solve the Swift-Hohenberg equation http://en.wikipedia.org/wiki/Swift%E2%80%93Hohenberg_equation using a pseudo-spectral scheme, where the linear terms are treated ...
7
votes
2answers
435 views
Extract contours from ContourPlot in Mathematica
I have a function f(x,y) of two variables, of which I need to know the location of the curves at which it crosses zero. ContourPlot does that very efficiently (that is: it uses clever multi-grid ...
7
votes
2answers
162 views
Limitation of Mathematica optimization module
I have a question regarding Mathematica's global optimization capability. I came across this text related to the NAG toolbox (kind of white paper).
Now I tried to solve the test case from the paper. ...
7
votes
9answers
473 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)
...
7
votes
5answers
3k views
Solving nonlinear equations numerically
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
3answers
1k views
Fastest 128 bit integer library
I am working on a CPU-heavy numerical computation app. Without going into many details, it's a computational math research project that involves computing a certain function f(x) for large integer x.
...
6
votes
3answers
896 views
Good books on numerical computation with C [closed]
I've read the post "What is the best book on numerical methods?" and I wish to ask more or less the same question but in relation to C programming. Most of the time, C programming books on numerical ...
6
votes
3answers
255 views
6
votes
8answers
687 views
Accurate evaluation of 1/1 + 1/2 + … 1/n row
I need to evaluate the sum of the row: 1/1+1/2+1/3+...+1/n. Considering that in C++ evaluations are not complete accurate, the order of summation plays important role. 1/n+1/(n-1)+...+1/2+1/1 ...
6
votes
4answers
1k 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
3answers
277 views
Dealing with floating point errors in .NET
I'm working on a scientific computation & visualization project in C#/.NET, and we use doubles to represent all the physical quantities. Since floating-point numbers always include a bit of ...
5
votes
7answers
1k views
Ruby implementation is_numeric? for Strings, need better alternatives
I wanted to validate 'numericality' of a string (its not an attribute in an active-record model). I just need it to be a valid base 10, positive integer string. I am doing this:
class String
def ...
5
votes
6answers
1k 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 ...
5
votes
4answers
1k 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 are 1d quantum ...
5
votes
2answers
597 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 ...
5
votes
3answers
436 views
How to Test Numerical Analysis Routines?
Are there any good online resources for how to create, maintain and think about writing test routines for numerical analysis code?
One of the limitations I can see for something like testing matrix ...
4
votes
3answers
263 views
Plotting a line over several graphs
I don't know how this thing is called, or even how to describe it, so the title may be a little bit misleading.
The first attached graph was created with pyplot. I would like to draw a straight line ...
4
votes
3answers
332 views
Numerical problems in Matlab: Same input, same code -> different output?
I am experiencing problems when I compare results from different runs of my Matlab software with the same input. To narrow the problem, I did the following:
* save all relevant variables using ...
4
votes
4answers
391 views
python floating number
i am kind of confused why python add some additional decimal number in this case, please help to explain
>>> mylist = ["list item 1", 2, 3.14]
>>> print mylist ['list item 1', 2, ...
4
votes
5answers
294 views
Numerical Pattern Matching
A project I'm researching requires some numerical pattern matching. My searches haven't turned up many relevant hits since most results tend to be around text pattern matching. The idea is we'll have ...
4
votes
5answers
249 views
Numerical Java Libraries
Most of my code is in Java. For standardized algorithms: matrix operations, FFT, ... I would prefer to not use my own pure Java implementations, and are perfectly happy using unsafe FFI/JNI calls.
...
4
votes
9answers
879 views
Java performance in numerical algorithms
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 tuned SSE ...
4
votes
7answers
563 views
Has arbitrary-precision arithmetic affected numerical analysis software?
Has arbitrary-precision arithmetic affected numerical analysis software?
I feel that most numerical analysis software keeps on using the same floats and doubles.
If I'm right, I'd love to know the ...
4
votes
2answers
501 views
What to do with “Inferred type is less polymorphic than expected”?
I need the Numeric.FAD library, albeit still being completely puzzled by existential types.
This is the code:
error_diffs :: [Double] -> NetworkState [(Int, Int, Double)]
error_diffs ...
4
votes
7answers
3k views
Precision of Floating Point
So, I know a little bit about how floating point are represented, but not enough to be sure of my answer.
The general question: for a given precision (for my purposes, the number of accurate decimal ...
3
votes
5answers
100 views
How do i check for numeric value in C language?
This question has been asked before, but i've never found a clear and simple answer, so i'm asking it again...
I'de like to know, without using any other library than stdio.h, how to check if what ...
3
votes
3answers
147 views
Avoid & Count non-numerical values computing basic statistics in Mathematica
Please consider :
dalist={{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
{2.88`, 2.04`, 4.64`,0.56`, 4.92`, 2.06`, 3.46`, 2.68`, 2.72`,0.820},
{"Laura1", "Laura1", "Laura1", "Laura1", "Laura1",
...
3
votes
3answers
258 views
Free/open source C/C++ library of vectorized math functions?
I'm looking for a free/open source C/C++ (either is acceptable) library of vectorized versions of common math functions (such as ln or exp) similar to Intel's Vector Math Library for Linux. I'd like ...
3
votes
2answers
103 views
Finding the “discrete” difference between close floating point numbers
Suppose I have two floating point numbers, x and y, with their values being very close.
There's a discrete number of floating point numbers representable on a computer, so we can enumerate them in ...
3
votes
1answer
147 views
How do the Sho dll's from Microsoft Research compare to the open-source Math.NET numerics project
I'm considering Sho from the perspective of developing general .NET applications and something that has been difficult for me in the past is that there is NO standard math library for the .NET ...
3
votes
4answers
296 views
Numerical Representation of real numbers, alternative to floating-point format
are there any formats to describe real numbers, other than floating point format?
In particular, I ask for formats which still provide feasible computation performance (compared to floating point), ...
3
votes
2answers
519 views
Java / Scala math library with elliptic integrals and bessel functions?
I am looking for a math library for scientific computing to use in Java / Scala. Especially I need complete elliptic integrals und modified Bessel functions. I would be nice if it is open source, but ...
3
votes
1answer
176 views
logsumexp implementation in C?
Does anybody know of an open source numerical C library that provides the logsumexp-function?
The logsumexp(a) function computes the sum of exponentials log(e^{a_1}+...e^{a_n}) of the components of ...