Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
749 views

What's the future of std::valarray look like?

Up until fairly recently I hadn't been keeping up with the C++0x deliberations. As I try to become more familiar with it and the issues being worked, I came across this site which seems to be ...
10
votes
4answers
358 views

Doing efficient Numerics in Haskell

I was inspired by this post called "Only fast languages are interesting" to look at the problem he suggests (sum'ing a couple of million numbers from a vector) in Haskell and compare to his results. ...
9
votes
1answer
192 views

Library function capabilities of Mathematica

I am trying to use CUSP as an external linear solver for Mathematica to use the power of the GPU. Here is the CUSP Project webpage. I am asking for some suggestion how we can integrate CUSP with ...
5
votes
6answers
291 views

Take the average of two signed numbers in C

Let us say we have x and y and both are signed integers in C, how do we find the most accurate mean value between the two? I would prefer a solution that does not take advantage of any ...
3
votes
4answers
77 views

Numerical Integration with c++ on a given mesh with fixed constant discretisation

I have the following problem: My c++ code can compute two functions f1(i1,i2,i3,i4) f2(j1,j2) for every set of {i1,i2,i3,i4} I get some value of f1 and for every set of {j1,j2} I get some value of ...
2
votes
1answer
264 views

Public Domain or No Binary Attribution FFT Lib?

I'm looking for an FFT library to translate into the D programming language for inclusion either in a library that I'm working on or (better yet) in the standard library. I need a fairly simple FFT ...
1
vote
0answers
54 views

Visual Studio 2010 - .Net Framework 4 Console Application

Basically I have added the System.Numerics reference to my project, and have added it to my using statements as below: However, I am getting the following error: The type or namespace name ...
1
vote
2answers
203 views

Polymorphic Numerics on .Net and In C#

It's a real shame that in .Net there is no polymorphism for numbers, i.e. no INumeric interface that unifies the different kinds of numerical types such as bool, byte, uint, int, etc. In the extreme ...
1
vote
4answers
380 views

C++, is linking order standardized?

On my linux box, I have 2 libraries: libfoo1.a and libfoo2.a and they both contain an implementation of void foo(int) and my main program calls foo: int main() { foo(1); return 0; } I ...
0
votes
2answers
43 views

C Input only decimals

I'm trying to restrict the input to only numerics in a simple C application however I get a warning. I suspect it's to do with the following segment. Is version one the proper way of doing things? ...
0
votes
2answers
88 views

Java resources to do number crunching?

What are the best resources on learning 'number crunching' using Java ? I am referring to things like correct methods of decimal number processing , best practices , API , notable idioms for ...
0
votes
3answers
297 views

byte[] to unsigned BigInteger?

Motivation: I would like to convert hashes (MD5/SHA1 etc) into decimal integers for the purpose of making barcodes in Code128C. For simplicity, I prefer all the resulting (large) numbers to be ...
0
votes
6answers
182 views

Using Decimal or Hexadecimal Bases in .NET

Good morning, afternoon or night, Forewarning: I know that this may sound like I am trying to do premature optimization, but I assure you I am not. That being, please answer this question if you ...
0
votes
1answer
408 views

matlab cell2mat( … ) function with cell array having a bunch of sparse matrices overflows memory unexpectedly

I get strange behavior with respect to memory with Matlab and the cell2mat() function... what I would like to do is: cell_array_outer = cell(1,N) parfor k = 1:N cell_array_inner = cell(1,M); ...