Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
7answers
5k views

How to find minimum of nonlinear, multivariate function using Newton's method (code not linear algebra)

I'm trying to do some parameter estimation and want to choose parameter estimates that minimize the square error in a predicted equation over about 30 variables. If the equation were linear, I would ...
3
votes
2answers
151 views

Non-graphical linearity estimation

In my previous post, I was looking for correlation ratio (η or η2) routines in R. I was surprised by the fact that no one uses η for linearity checking in the GLM procedures. Let's start ...
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
67 views

Dealing with 0 error in nls - R script

Is there any way to allow my nls to have 0 residual error when it makes a non linear fit? I have cases in my data where the fit made should have 0 error, but nls always fails and spits out an error. ...
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
3answers
381 views

Limitations of the Levenberg-Marquardt algorithm

I am using Levenberg-Marquardt algorithm to minimize a non-linear function of 6 parameters. I have got about 50 data points for each minimization, but I do not get sufficiently accurate results. Does ...
2
votes
1answer
137 views

How do you do nonlinear shading in OpenGL?

I am developing a visualization tool in OpenGL to visualize the output of a 3d finite element modeling application. The application uses a tetrahedral mesh (but I am only viewing the exterior facets, ...
2
votes
5answers
2k views

Sine Table Interpolation

I want to put together a SDR system that tunes initially AM, later FM etc. The system I am planning to use to do this will have a sine lookup table for Direct Digital Synthesis (DDS). In order to tune ...
1
vote
0answers
73 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 ...
1
vote
1answer
213 views

Non-Dimensionalization Mathematica

I have a set of coupled equations for the variables H, W, P, & T (below) that I need to non-dimensionalize. Is there a way of achieving this in Mathematica as doing it manually is proving ...
1
vote
4answers
193 views

Non-linear counter

So I have a counter. It is supposed to calculate the current amount of something. To calculate this, I know the start date, and start amount, and the amount to increment the counter by each second. ...
0
votes
1answer
18 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 ...
0
votes
0answers
12 views

Non linear Dimensionality Reduction using DRL

I am Working with DRL package for non linear dimensionality reduction. I want to move the main code with matlab to this code as it is written in C++. I would first like to compare the functionality. ...
0
votes
1answer
351 views

Matlab: In function “fminsearch(fun,x0)” x0 not getting accepted as matrix

In Matlab documentation for function fminsearch(fun,x0) , x0 can be a scalar, vector, or matrix. However I am trying to call this function as : weight=2; delta_obj=@(k_to_perturb_annealing) ...
0
votes
2answers
364 views

False Position Method (help needed)

I'm attempting to write a code to find the root of non-linear equations using the false position method. I'm done with my code, but I still have a problem. For example, if I know that the root is ...
0
votes
0answers
339 views

Solving nonlinear equations in MATLAB

I need to solve Tq in the following: function [Tq] = Tlocal_solving(Tq,v,q_T,qmax) global q_0 T0; Tq = T0 + quad(@(q)G(v,q,q_T).*f(Tq,v,q),q_0,qmax,1e-5); end %% function [f] = f(Tq,v,q) global ...
0
votes
1answer
637 views

Eta/Eta-squared routines in R

Apart from graphical estimation of linearity (gaze-at-scatterplot method), which is utilized before applying some technique from GLM family, there are several ways to do this estimation arithmetically ...