Tagged Questions

6
votes
11answers
318 views

Function approximation

I have a function, P(x0, x1, ..., xn) that takes 100 integers as input and gives as output an integer. P is a slow function to evaluate(it can range from 30 seconds to a couple of minutes). I need ...
5
votes
2answers
240 views

What algorithm to use for optimization af a function of N variables?

Given the function y=f(x1,x2,x3,x4,x5,x6), I'm trying to find the values of x1..x6, where the function reaches its maximum. The function is quite well behaved, continuous, with a single peak with the ...
3
votes
3answers
198 views

Finite difference in Haskell, or how to disable potential optimizations

I'd like to implement the following naive (first order) finite differencing function: finite_difference :: Fractional a => a -> (a -> a) -> a -> a finite_difference h f x = ((f $ x + ...
2
votes
8answers
1k views

Algorithm for multidimensional optimization / root-finding / something

I have five values, A, B, C, D and E. Given the constraint A + B + C + D + E = 1, and five functions F(A), F(B), F(C), F(D), F(E), I need to solve for A through E such that F(A) = F(B) = F(C) = F(D) ...
0
votes
2answers
134 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
0answers
19 views

need help understanding Apache Commons Math BracketFinder

I will start off by saying that this feels like it should be easy... but it's not entirely obvious to me. I am trying to use the BrentOptimizer to find local minima and maxima of a function. I have ...