0
votes
3answers
66 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 …
0
votes
5answers
176 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 …
2
votes
3answers
81 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; …
2
votes
2answers
32 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 …
3
votes
8answers
225 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
2answers
112 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
…
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)
…
0
votes
4answers
93 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 …
3
votes
8answers
292 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 …
3
votes
1answer
223 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 …
1
vote
6answers
156 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 …
1
vote
4answers
328 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 …
4
votes
6answers
404 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 …
1
vote
10answers
232 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 System;
namespace …
10
votes
10answers
910 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? …
