0
votes
2answers
56 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 …
3
votes
7answers
222 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
87 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' …
2
votes
1answer
172 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 …
3
votes
8answers
276 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
vote
6answers
142 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
311 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
339 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
225 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
884 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
359 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 …
4
votes
5answers
416 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..
1
vote
2answers
69 views
Are there any .NET Graphics Calculate Libraries?
Sorry for my bad English.
I want to find a Calculate Library not a Drawing Library to help me do some graphics calulation like Bezier's length, point on Beziers or other metadata. …
0
votes
4answers
186 views
Haskell 64 bit numerical type
I am writing a function in Haskell that deals with numbers beyond the length of a 32 bit int. I cannot find the type to do this and I seem to be searching for the wrong terms.
It …
7
votes
9answers
906 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( …
