The nonlinear-functions tag has no wiki summary.
-1
votes
0answers
6 views
Nonlinear regression with neural network
I would like to share with you how I approached a nonlinear regression problem (2 inputs, one output), and have your advice.
After some quick readings I settled for a network with one single hidden ...
0
votes
0answers
14 views
How does MATLAB's ode45 handle highly coupled ODEs (where y' depends on x' and x' depends on y', etc.)?
If I have two sets of highly coupled ODEs such as:
dy/dt = A*dx/dt + B*y + C*x
dx/dt = D*dy/dt + E*y + F*x
or if I have a system like:
U = function(dy/dt)
dy/dt = function(U,...)
How would ode45 ...
-2
votes
0answers
8 views
Coin-or support quadratics objective functions? how I do it? [closed]
I need to solve a Quadratic programming problems(QP) and problems with quadratic Constraints (QCP). Now I use cplex to solve these problems. I had seen one sample in ...
0
votes
0answers
88 views
+50
R - standard errors on predictions from nlme
This question builds on Extract prediction band from lme fit but with non-linear mixed models.
I have a dataset of response values that are grouped by "entry." I used an AIC-model selection procedure ...
3
votes
1answer
37 views
z3 timeout on nonlinear constraints
I have a timeout problem when using z3 for nonlinear real arithmetics. The following code is to check if the 4-dimensional hyper-rectangle has a volume greater than 50000 and also satisfies some ...
0
votes
0answers
28 views
matlab: large system of coupled nonlinear equations
I'm trying to solve the a very large system of coupled nonlinear equations. Following this thread and the related help by Matalb (first example) I tried to wrote the following code:
%% FSOLVE TEST #2
...
1
vote
1answer
53 views
Fsolve with variables from other arrays
I have the following function:
function F = F(x,L,Kc1,Kc2,Kc3,Kc4)
F=[(2*L*x(1)^2)/Kc1 + L*x(1)*x(2)/Kc3 + x(1)+ (x(1)*Kc4/L)^0.5 - (2*(0.235)); (2*L*(x(2)^2))/Kc2 + x(2)+ L*x(1)*x(2)/Kc3 ...
1
vote
1answer
41 views
Does Z3 v4.3+ support quantifier elimination for NON-linear arithmetic
I could not find out what kind of quantifier elimination Z3 fully supports.
What I have is a universally quantified formula over -in general- non-linear terms. I would like to obtain an equivalent ...
1
vote
0answers
35 views
How to reformat non-linear data to linear data in python?
Let me elaborate:
I have a nonlinear time axis, say [2.0,5.8,8.18,16.0,32.1] (could be anything though)
I have a waveform recorded at the above times, say [1,1,1,1,1,etc]
I need to transfer ...
1
vote
2answers
292 views
using python to solve a nonlinear equation
I have never used python but Mathematica can't handle the equation I am trying to solve. I am trying to solve for the variable "a" of the following equations where s, c, mu, and delta t are known ...
2
votes
1answer
166 views
Matlab's fsolve converges *but* seems to give wrong solution
I am trying to solve a system of non linear equations using fsolve; lets say
F(x;lambda) = 0, where lambda is a vector of parameters, and x the vector I want to solve for.
I am using Matlab's ...
2
votes
1answer
178 views
How to solve simultaneous non-linear equations with exponential functions?
I have a system of equations to solve for x1 and x2:
2*erf(A*x2)*exp(B*x1^2+C*x2^2)-D*erf(x1)=0
2*erf(D*x2)*exp(E*x1^2+F*x2^2)-G*erf(x1)-erf(H*x2)*exp(I*x1^2)=0
where B and C are negative while ...
0
votes
1answer
112 views
plot new values for best fit nonlinear curve
I have created the best fit for a non linear function. It seems to be working correctly:
#define a function
fncTtr <- function(n,d) (d/n)*((sqrt(1+2*(n/d))-1))
#fit
dFit <- ...
0
votes
1answer
204 views
Error in optim: function cannot be evaluated at initial parameters [closed]
So I've run into this weird error in R. I have a simple function which returns an error term when comparing real and simulated prices, called hestondifferences().
when I try to find the local minima ...
1
vote
1answer
85 views
Change Objective Function in nls.lm() in “R”
I'm using the function nls.lm {package: minpack.lm} to optimize a parameteristion for a hydrological model. The function is working quite well, but I want to use an other objective function (OF). ...
0
votes
1answer
73 views
Map points from one 2D plane to another
Given a point on a plane A, I want to be able to map to its corresponding point on plane B. I have a set of N corresponding pairs of reference points between the two planes, however, the overall ...
3
votes
1answer
174 views
Mathematica: Solving a PDE that contains Conjugate of a function or Abs of a function
I'm trying numerically solve a PDE using NDSolve. I keep getting the following error:
"NDSolve::ndnum: "Encountered non-numerical value for a derivative at t == 0.."
It seems that I only get this ...
0
votes
0answers
82 views
Fitting a function with an imaginary part
I'm actually new to MATLAB. I have some experimental data which is a plot of (R vs. f). I want to fit a function to the data and want to derive some parameters. I got fixed in trying to put all the ...
3
votes
1answer
215 views
Integral with variable limits
Hi im and struggling to solve an integral with a variable as the limit using matlab, the 2 biggest problems I have is that matlab can't find the integral explicitly and a lot of the numerical methods ...
1
vote
1answer
271 views
Formulating a summation objective function to minimize for fmincon in MatLab
I have a summation objective function (non-linear portfolio optimization) which looks like:
minimize w(i)*w(j)*cv(i,j) for i = 1 to 10 and j = 1 to 10
w is the decision vector
cv is a known 10 by ...
2
votes
1answer
294 views
polynomial regression c code
I am very new to C programming. I'm using C code from the book 'Numerical Recipes in C' for polynomial regression, but I'm having problems implementing/compiling it.
Here's the code that I am using. ...
1
vote
2answers
254 views
Python AttributeError:cos
I'm trying to solve numerically an equation using Python2.7. This is the whole code:
from sympy import *
from sympy import Symbol
from sympy.solvers import nsolve
from scipy import *
from pylab ...
6
votes
1answer
394 views
Singular gradient error during bootstrapped nls fit to bad data
I have a dataset containing an independent variable and a set of dependent variables. I'd like to fit a function to each set of independent variables, using a bootstrapped nonlinear least squares ...
3
votes
1answer
1k views
Non linear function parameter estimation - matlab, lsqnonlin, fzero
I'm having difficulty with a fitting problem. From the errors that I get I imagine that the boundaries are not defined correctly and I haven't managed to find a solution. Any help would be very much ...
0
votes
1answer
581 views
Solve nonlinear equation in matlab
I need to know how to solve a system of nonlinear equations but varying a parameter, so that every time you change that parameter will throw me the result of that system (need all results), I thought ...
1
vote
0answers
212 views
non linear fitting
I have some experimental data and I would like to fit them to obtain my parameters using the least-square method (Levenberg-Marquardt).
I am using two non-linear equations and I am using some ...
0
votes
2answers
163 views
nonlinear equation R [closed]
I like to fit a nonlinear equation(g and h are the parameters):
q = g * (h**age)/(1 + g * (h**age));
restrict q = .05 when age = 50:
i.e. g * (h*50)/(1 + g (h**50)= .05.
This means when age ...
1
vote
1answer
366 views
Passing predetermined parameters to scipy.optimize.fsolve
I'm trying to use python to solve a system of 6 nonlinear equations. There are 9 variables, and 3 of them are predetermined (leaving a system of 6 equations with 6 unknowns). The problem is, it could ...
1
vote
1answer
345 views
Solving a non-linear system of equations in Matrix form in Python
I am trying to solve a non-linear system of equations of the form AX=X where,
A = M-by-M matrix
X = M-by-1 matrix
Thus, in total I have M (=200) equations (and M unknowns).
More specifically,
A = ...
-3
votes
1answer
262 views
Mathematic non linear equation solver
I need to solve below equation for the x using mathematica,basically i need numberical values for x,interms of A,B,K,a and b
Ax^(-a)+Bx^(-a-b)=K
1
vote
1answer
1k views
Solve non-linear system of equation in Mathematica
I'm trying to solve non-linear system of equations in Mathemtica.
I tried Solve and NSolve, I also tried to define a_{ij} and b_{ij} and m33=1 numerical to simplify equation, but Mathematica seems to ...
1
vote
5answers
196 views
Maximization of nonlinear equation in Java
I want to determine the value of x for which a certain function (similar to the next one) is maximized:
It is clear that the maximum of A is reached when x = 0, and then A = 200.
How could I solve ...
0
votes
1answer
920 views
Solving set of non-linear equations with two unknowns in MATLAB
I have two non-linear equations with two unknowns, i.e., Ï„ and p. Both equations are:
p=1-(1-Ï„).^(n-1)
and
Ï„= 2*(1-2*p) / ( (1-2*p)*(W+1)+(p*W)*(1-(2*p)^m))
I am interested to find the value of Ï„.
...
0
votes
1answer
176 views
Cross characteristics of a non-linear equation in Matlab
I'd like to create a Matlab plot of propeller angular velocity in terms of applied current. The point is, this requires combining two interdependent sets of data.
Firstly, drag coefficient c_d ...
2
votes
2answers
520 views
Quit an applescript application after the execution of a shell script
I was wondering if it is possible for an applescript application to run a shell script, then quit before the execution of the shell script is completed. This would be useful when running a server for ...
0
votes
1answer
570 views
What fitting algorithm does Mathematica use in NonlinearModelFit[]?
I need to know the algorithm(s) it uses, because I have to write my own program. Levenberg-Marquardt doesn't really do the same. Is there like a list of algorithms, from which Mathematica chooses what ...
0
votes
0answers
344 views
Solving large number of ill-defined non-linear equations in MATLAB
I will try to describe my problem, but there are some specific questions in the end.
I am having some trouble solving a turbomachinery problem in Matlab. The goal is to calculate the efficiency of a ...
0
votes
3answers
2k views
Solving an equation with scipy's fsolve
I'm trying to solve the equation f(x) = x-sin(x) -n*t -m0
In this equation, n and m0 are attributes, defined in my class. Further, t is a constant integer in the equation, but it has to change each ...
6
votes
1answer
310 views
An algorithm for checking if a nonlinear function f is always positive
Is there an algorithm to check if a given (possibly nonlinear) function f is always positive?
The idea that I currently have is to find the roots of the function (using newton-raphson algorithm or ...
4
votes
3answers
1k views
Constrained optimization for nonlinear multivariable function in Java
I am looking for an open source implementation of a method doing constrained optimization for nonlinear multivariable function in Java.
0
votes
2answers
910 views
How to solve the system of nonlinear simultaneous equations (in Matlab, in Python, or in Fortran)
I am looking at a system of nonlinear simultaneous equations. The two variables are u>0 and b>0. How can I solve this problem in Matlab, in Python, or in Fortran? Thanks.
0
votes
1answer
247 views
solving dynamic number of non-linear equations in python
Fsolve in Scipy seems to be the right candidate for this, I just need help passing equations dynamically. I appreciate any thoughts in advance.
By dynamic I mean number of equations differ from one ...
0
votes
0answers
71 views
Matlab: Solving u_t = f(u) u'' + g(u) u' + h(u) u
I am trying to solve this equation
http://i.stack.imgur.com/Defza.png
And its expanded form:
http://i.stack.imgur.com/JnJ4e.png
Where u is a function of u=u(t,x).
(nu as the image shows is a ...
0
votes
2answers
590 views
Piecewise non-linear regression using non-linear function in R
I am looking to perform regression piecewise using non-linear functions with multiple breakpoints. I have done the piecewise linear regression, but when it comes to specifying non-linear functions of ...
3
votes
1answer
394 views
Optimise parameters in a set of non-linear equations simultaneously
I have a large number of equations (n) with a large number of unknowns (m) where m is larger than n. I am trying to find the values of m using the n equations and a large set of observed values.
I ...
3
votes
1answer
335 views
How do I automatically specify the correct regression model when the number of variables differs between input data sets?
I have a working R program that will be used by my internal client for analysing their nutrient intake data. For each dataset that they have, they will re-run the R program.
A key part of the dataset ...
3
votes
2answers
418 views
Splines inside nonlinear least squares in R
Consider a nonlinear least squares model in R, for example of the following form):
y ~ theta / ( 1 + exp( -( alpha + beta * x) ) )
(my real problem has several variables and the outer function is ...
1
vote
0answers
1k views
nlme error “Invalid formula for groups” although random effect specified
I have done some searching for this, but the mailing list posts I have found are associated with the person not specifying a random effect in nlme whereas I have done this. I also own the book Mixed ...
0
votes
1answer
36 views
Getting trailing solver results
I have a dataset that is being used to compute(approximate) the parameters of a non-linear function.
The raw data points are spread out in time and currently my solver is able to compute the best ...
2
votes
3answers
276 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 ...
