Tagged Questions

11
votes
9answers
1k views

As Java is to Scala, C++ is to …?

Although C++0x is quite an improvement to C++ (type inference, anonymous functions, and so on), I have to say that Scala seems even better. The thing is that Scala only runs on the JVM, although it ...
4
votes
2answers
203 views

is there a c++ library for ordinary differential equation (ODE) solvers?

More specifically, i'm interested in 8th order Dormand-Prince embedded method, it's based on Runge-Kutta, and stiff equations. I use Numerical Recipes 3 but i often have trouble compiling their ...
4
votes
4answers
143 views

What's the numerically best way to calculate the average

what's the best way to calculate the average? With this question I want to know which algorithm for calculating the average is the best in a numerical sense. It should have the least rounding errors, ...
4
votes
8answers
509 views

The fastest way to save large data to a file

I do some numerical calculation in Java, C# and C++. Some of them save a lot of data (to the text file). What is the fastest way to do it? C++. ofstream file; file.open(plik); for(int ...
3
votes
6answers
231 views

Need pow(-1,1.2) to be 1

I am using math.h with GCC and GSL. I was wondering how to get this to evaluate? I was hoping that the pow function would recognize pow(-1,1.2) as ((-1)^6)^(1/5). But it doesn't. Does anybody know ...
3
votes
8answers
4k views

implementing the derivative in C/C++

How is derivative of a f(x) is typically calculated programmatically to ensure maximum accuracy? I am implementing the Newton-Raphson method and it requires taking of the derivative of a function. ...
2
votes
0answers
115 views

Numerical recipes / Multidimensional root search (using newt) : How to minimize the maximum error

This question is related to the "numerical recipes in C++" book, so it will be reserved to people knowing a little about it as well as about multidimensional optimization. I am writing a program that ...
2
votes
1answer
150 views

Favorite/Best A.X=B Solver that Supports Long Doubles?

I am hoping to repeatedly hammer an X=B(A^-1) problem. That is, solve a linear system. For C++, which numerical solvers have support for 128bit long doubles (quads)? Using C style arrays is a major ...
2
votes
4answers
427 views

std::pow gives a wrong approximation for fractional exponents

Here is what I mean trying to do double x=1.1402 double pow=1/3; std::pow(x,pow) -1; result is 0 but I expect 0.4465 the equation is (1 + x) ^3= 1.1402, find x.
1
vote
2answers
108 views

Library for solving system of linear equations with tridiagonal matrix?

I am modelling physical system with heat conduction, and to do numerical calculations I need to solve system of linear equations with tridiagonal matrix. I am using this algorithm to get results: ...
1
vote
2answers
57 views

Gprof results: what is “alloc_mmap”?

My results for a short run of my program are as follows: 67.93 3.24 3.24 grid::rKfour(int, int) 9.43 3.69 0.45 alloc_mmap ...
1
vote
3answers
112 views

fixed point iteration

i am trying to find such p,that for given function f(p),we have equality p=f(p); here is code #include <iostream> #include<math.h> using namespace std; float fixed(float x){ ...
1
vote
0answers
237 views

Remove a row from uBlas compressed matrix?

I was wondering what was the best way to remove a row from uBlas's compressed matrix? I was wondering if there was some way to get a hold of the compressed column data inside the vector? I am looking ...
1
vote
5answers
213 views

evaluating multiple integrals

Is there any library to evaluate multidimensional integrals? I have at least 4 (in general much more than that), where the integrand is a combination of variables, so I cannot separate them. Do you ...
1
vote
1answer
293 views

numpy alternative for C++: linear algebra / FFT / numeric goodies?

I've been using python + numpy for a while, and got familiarized (and charmed) with it. Now, I need to do some calculations using C++, and was looking for a nice library to do numerical stuff fast and ...
1
vote
2answers
339 views

Problems with Log function in Boost C++ libraries

I have this code in order to get a logarithm of a number given a generic base: #include <boost/math/special_functions/powm1.hpp> #include <boost/math/special_functions/log1p.hpp> #include ...
0
votes
3answers
116 views

Numerical solution to differential equations in C++, path to take?

I am trying to implement a numerical method (Explicit Euler) to solve a set of three coupled differential equations. I have worked with C before, but that was a very long time ago (effectively ...
0
votes
2answers
140 views

__builtin_prefetch, How much does it read?

I'm trying to optimize some RK4 GCC C++ code by using __builtin_prefetch I'm having some trouble trying to figure out how to prefetch a whole class. I don't understand how much of the const void ...
0
votes
3answers
110 views

newtons methods implementation

i have posted a few hours ago question about newtons method,i got answers and want to thanks everybody,now i have tried to implement code itself #include <iostream> #include ...
0
votes
2answers
96 views

solving numerical problems using Newtons method

i am studing numerical analysis,and also solving algorithms which is described in book;my problem is about newtons method,in general if some function is given and we have to find root,how can we ...
0
votes
0answers
164 views

integrating boost with numerical recipes 3 code

i get a bunch of errors when i use both nr3.h and boost library. I use ubuntu 10.04 with libboost1.40 and code from http://www.nr.com/ (3rd edition) try.cc: #include "nr3.h" #include ...
0
votes
3answers
199 views

SVD to solve harwell-boeing sparse a.x=b system in C/C++?

Does anybody know of a sparse SVD solver for c++? My problem involves some badly conditioned matrices that might have zeroed columns/rows. My data is stored in a uBLAS matrix which is the ...
0
votes
1answer
60 views

How to set UMFPACK's tolerance

I am using umfpack in c++ to solve a sparse matrix. I am having trouble finding where the [UMFPACK PIVOT TOLERANCE] parameter is set. Would anybody know how to set this control parameter? My current ...
0
votes
2answers
452 views

Problem with implementing successive approximation algorithm in C++ with Visual Studio 2008

I'm trying to implement an algorithm we did in numerical methods class. I have an identical procedure written in Maple and it works fine. I can't understand why it isn't working in C++. Any help or ...