2
votes
1answer
99 views
A Simple Wrapper for F# to do matrix operations
Hi there!
This is a relatively long post. F# has a matrix and vector type(in PowerPack not in the Core) now. This is great! Even Python's numerical computing ability is from the third part.
But the …
0
votes
2answers
37 views
redistributing application with NAG math libraries- client must have license?
Has anyone dealt with re-distributing an application that uses the Numerical Algorithms Group (NAG) Libraries?
It seems like when I build an executable, it won't run unless I have an environment …
0
votes
3answers
76 views
What’s the difference between combinatorial and numerical problems
Could you please give at least two examples of each. Thanks.
3
votes
3answers
132 views
Scala: Whats the best way to do numeric operations in generic classes?
In Scala, I'd like to be able to write generic classes which use operators like >, /, * etc, but I don't see how to constrain T such that this will work.
I looked into constraining T with Ordered[T], …
1
vote
4answers
150 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
69 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
39 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 …
0
votes
5answers
202 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
109 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; …
3
votes
8answers
245 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
155 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
241 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)
…
4
votes
1answer
255 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
173 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 …
3
votes
8answers
299 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 …
