Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
386 views

Find the Discrete Pair of {x,y} that Satisfy Inequality Constriants

I have a few inequalities regarding {x,y}, that satisfies the following equations: x>=0 y>=0 f(x,y)=x^2+y^2>=100 g(x,y)=x^2+y^2<=200 Note that x and y must be integer. Graphically it ...
4
votes
6answers
1k views

Finding a curve to match data

I'm looking for a non-linear curve fitting routine (probably most likely to be found in R or Python, but I'm open to other languages) which would take x,y data and fit a curve to it. I should be able ...
2
votes
3answers
110 views

Solving multiple phase angles for multiple equations

I have several equations and each have their own individual frequencies and amplitudes. I would like to sum the equations together and adjust the individual phases, phase1,phase2, and phase3 to keep ...
2
votes
1answer
344 views

python nonlinear least squares fitting

I am a little out of my depth in terms of the math involved in my problem, so I apologise for any incorrect nomenclature. I was looking at using the scipy function leastsq, but am not sure if it is ...
2
votes
1answer
268 views

Run a function in between each iteration of fsolve in MATLAB

I am using fsolve to minimise an energy function in MATLAB. The algorithm I am using fits a grid to noisy lattice data, with costs for the distances of the grid from each data point. The objective ...
2
votes
1answer
462 views

Non linear programming example c, java?

Do you know a good example of nonlinear programming?, I have search over google, but any text just formulate and do not solve the problem, They mention lingo and even excel for solving it. Could you ...
2
votes
4answers
521 views

Non Linear Integer Programming

I would like to know if there is a package in R handling non linear integer optimization. "Basically", I would like to solve the following problem: max f(x) s.t x in (0,10) and x is integer. I know ...
1
vote
2answers
122 views

Solve nonlinear system of equations with minimal error

I have some nonlinear optimization problem (preferably solved in python): Given are 3 circles (centers x1..3,y1..3, radii d1..3) in a 2D plane. (x-x1)^2 + (y-y1)^2 - r1^2 = 0 (x-x2)^2 + (y-y2)^2 - ...
1
vote
2answers
638 views

Pure Java open-source libraries for portfolio selection (= constrained, non-linear optimization)?

Does anyone know or has experience with a pure Java library to select portfolios or do some similar kinds of quadratic programming with constraints? There seems to be a lot of tools, as already ...
0
votes
1answer
144 views

Nonlinear regression in R / S

I have a R / S / Nonlinear regression related issue and i am not a R programmer, so i kinda need help. I have two arrays - tt and td. I need to find the parameters a,b and c so the sum of least ...
0
votes
2answers
195 views

Minimizing objective function by changing a varialbe - in Matlab?

I have a 101x82 size matrix called A. Using this variable matrix, I compute two other variables called: 1) B, a 1x1 scalar, and 2) C, a 50x6 matrix. I compare 1) and 2) with their analogues ...