Tagged Questions
0
votes
0answers
60 views
Fitting data representing the displacement of a cylinder with a normal load at the middle
I have the following data representing the normal displacement caused by load applied at the middle cross section of a cylinder, normal to the cylinder surface. Only the middle cross section cut is ...
13
votes
5answers
351 views
How to perform a multi-peak fitting?
I am wondering how to implement the multi-peak detecting and fitting in Mathematica. Following is an example of fitting the data using three peaks (such that the data ~ peak1 + peak2 + peak3).
The ...
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}}];
...
1
vote
0answers
103 views
Performance in parameter estimation from ParametricNDSolve using varied initial conditions
I have 250 data points from a timecourse exeriment in a list, with columns specifying (1) time, (2-4) initial conditions, (5) absorbance reading. I want to fit 4 parameters (k1, k2, k3, k4) in a DAE ...
3
votes
1answer
148 views
NonlinearModelFit returning nonsense for very simple data
In fitting the following data, if I first log transform the y-values and use LinearModelFit I get a set of parameters that fits the data:
...
1
vote
1answer
215 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.
...
5
votes
1answer
151 views
LinearModelFit with millions of rows
I'd like to do a simple regression with millions of rows of (x,y) data. It seems to be too long for Mathematica. Is there a way to speed it up? It shouldn't be that hard to do, I am not sure what ...