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 ...
11
votes
7answers
1k views

C or Ada for engineering computations?

as an engineer I currently use C to write programs dealing with numerical methods. I like C as it's very fast. I don't want to move to C++ and I have been reading a bit about Ada which has some very ...
3
votes
3answers
725 views

What is a simple way to find real roots of a (cubic) polynomial?

this seems like an obvious question to me, but I couldn't find it anywhere on SO. I have a cubic polynomial and I need to find real roots of the function. What is THE way of doing this? I have found ...
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
2answers
260 views

Saving numerical 2D array to image

Lately I have been doing some numerical method programming in C. For the bug fixing and throubleshooting it's nice to have some visual representation of what is happening. So far I have been ...
2
votes
4answers
445 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
3answers
93 views

how to numerically integrate a variable that is being calculate in the program as a pointer (using e.g. trapezoidal rule) in c language

I have a code, that was not made by me. In this complex code, many rules are being applied to calculate a quantity, d(x). in the code is being used a pointer to calculate it. I want to calculate an ...
1
vote
2answers
436 views

modifying regula falsi method to the secant method

I have implemented the regula falsi method. I am trying to modify it so it becomes the secant method. A pdf I read mentioned that it is essentially the same with just one change. Future guesses for my ...
1
vote
4answers
746 views

LU Decomposition from Numerical Recipes not working; what am I doing wrong?

I've literally copied and pasted from the supplied source code for Numerical Recipes for C for in-place LU Matrix Decomposition, problem is its not working. I'm sure I'm doing something stupid but ...
1
vote
1answer
324 views

OpenMP and reduction()

I've got simply 3 functions, one is control function aan the next 2 function are done in a bit different way using OpenMP. But function thread1 gives another score than thread2 and control and I have ...
1
vote
2answers
577 views

Algorithm for fixed-point multiplication

I'm trying to rescale a timestamp (fractional part of seconds only) from nanoseconds (units of 10^-9 seconds) to the lower half of an NTP timestamp (units of 2^-32 seconds). Effectively this means ...
1
vote
2answers
759 views

Making C code plot a graph automatically

I have written a program which writes a list of data to a '.dat' file with the intention of then plotting it separately using gnuplot. Is there a way of making my code plot it automatically? My ...
0
votes
3answers
119 views

Memory management for gauss elimination

A matrix is created in processor 0 and scattered to other processors. A matrix is a symmetric dense matrix. That's why it is initialized in processor 0. A matrix is created in this way: ...
0
votes
2answers
183 views

Modifying C implementation of rk4 method

My problem is, frankly, that I'm unsure how this works. I need to modify the double f() function to solve an arbitrary differential equation d2θ/dt2 = −ω2sinθ, but as it is I am unsure how to ...
0
votes
2answers
604 views

creating an iterative program to estimate the root of a polynomial

Am creating a program in c which is suppose to estimate the root of a 10 order polynomial using newton raphson method. The user enters 10 coefficients and it is suppose to estimate the root of the ...
0
votes
3answers
666 views

Converting a simple C code into a CUDA code

I'm trying to convert a simple numerical analysis code (trapezium rule numerical integration) into something that will run on my CUDA enabled GPU. There is alot of literature out there but it all ...