7
votes
8answers
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 …
1
vote
4answers
120 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/
…
0
votes
3answers
68 views
Break on NaNs or infs
Hello all,
It is often hard to find the origin of a NaN, since it can happen at any step of a computation and propagate itself.
So is it possible to make a C++ program halt when a computation returns …
2
votes
2answers
34 views
Strategies for debugging numerical stability issues?
Dear SO,
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 …
2
votes
3answers
93 views
C#: Numerical algorithm to generate numbers from Binomial distribution
I need to generate random numbers from Binomial(n,p) distribution.
A Binomial(n,p) random variable is sum of n uniform variables which take 1 with probability p. In pseudo code, x=0; for(i=0; i<n; …
0
votes
5answers
183 views
Passing around fixed-size arrays in C++?
Basically I'd like to do something like that:
int[3] array_func()
{
return {1,1,1};
}
int main(int argc,char * argv[])
{
int[3] point=array_func();
}
But that doesn't seem legal in C++. I …
3
votes
8answers
232 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 …
0
votes
7answers
418 views
Looking for ODE integrator/solver with a relaxed attitude to derivative precision
I have a system of (first order) ODEs with fairly expensive to compute derivatives.
However, the derivatives can be computed considerably cheaper to within given error bounds, either because the …
0
votes
2answers
123 views
Fortran: 32 bit / 64 bit performance portability
I've been starting to use Fortran (95) for some numerical code (generating python modules). Here is a simple example:
subroutine bincount (x,c,n,m)
implicit none
integer, intent(in) :: n,m
…
0
votes
4answers
96 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 …
2
votes
4answers
381 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 …
4
votes
7answers
237 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)
…
3
votes
1answer
231 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 …
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 …
1
vote
4answers
332 views
What’s the smallest non-zero, positive floating-point number in Perl?
I have a program in Perl that works with probabilities that can occasionally be very small. Because of rounding error, sometimes one of the probabilities comes out to be zero. I'd like to do a check …
