Tagged Questions
0
votes
0answers
60 views
1-norm minimization [closed]
I am fairly new to Mathematica and I'm having trouble running a 1-norm minimisation of the following function, g(x) = f(x) - c where c is the data to be fitted to and f(x) is some function. I know how ...
0
votes
1answer
68 views
Using NonlinearModelFit to fit data with errors
Assume we have some data of measurements
SeedRandom[9];
data = Table[{i,2*(1 + 5*RandomReal[])*Exp[-0.01*(1 + RandomReal[])*i]}, {i, {0, 100, 200, 400, 700}}];
...
3
votes
1answer
84 views
Using a user defined NormFunction in FindFit or NDSolve
I would like to use a different norm instead of the 2-norm in FindFit (Mathematica 9). For example, instead of using
$$\sqrt{\sum (x_{\mathrm{model}} - ...
1
vote
0answers
206 views
Methods for NonlinearModelFit
I am using NonlinearModelFit for a thesis project.
I get quite different results if I change the Method to LevenbergMarquardt or QuasiNewton or ConjugateGradient ...
0
votes
0answers
168 views
NonlinearModelFit and NMinimize [closed]
I'm doing a non-linear fit on some data. The calculation residual is low, but I prefer to minimize another objective function such as:
...
5
votes
0answers
202 views
Mathematica vs Sigmaplot (Non LinearModelFit)
I asked a question in a previous post that was closed because "The title of the question is not correct and the issue here is too trivial to help anyone later".
NonLinearModelFit
It's possible ...
1
vote
1answer
151 views
How can I fit a matrix function with multiple variables to given eigenvalues?
I have a 5x5 matrix function H[kx]
...
1
vote
1answer
216 views
Optimizing the fitting of Ordinary Differential Equation(NDsolve) involving interpolation functions
I am a newbie to this forum. I am trying to use NDsolve to solve some ODEs involving the interpolation function. Then, I will compare the fitted curve and data to determine the ODE coefficients.
...
1
vote
1answer
325 views
How to find local minima of a multivariate function with singularity?
I am working on a logistic regression problem which requires minimizing a cost function J[{theta0, theta1, theta2}, X, y] to find the optimal value for fitting ...
10
votes
2answers
366 views
Is it possible to use the LevenbergMarquardt algorithm for fitting a black-box residual function?
I have a black-box multiargument multiparametric function of the type SRD[dataPoint_List,params_List] which accepts experimental data along with the parameters of ...