0
votes
5answers
163 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 s …
2
votes
3answers
52 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 …
3
votes
8answers
218 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 f …
0
votes
2answers
82 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, inte …
4
votes
7answers
232 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 th …
0
votes
4answers
92 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' …
3
votes
8answers
286 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)+ …
3
votes
1answer
203 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 librar …
1
vote
6answers
151 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:
c …
1
vote
4answers
322 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 …
4
votes
6answers
374 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, ha …
1
vote
10answers
230 views
Why do these division equations result in zero?
The result of all of the division equations in the below for loop is 0. How can I get it to give me a decimal e.g.:
297 / 315 = 0.30793650793650793650793650793651
Code:
using S …
10
votes
10answers
905 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 …
2
votes
4answers
364 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 …
0
votes
7answers
399 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, eit …
