help on fitting a curve
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how do you fit data with a peak using a Gaussian curve? If there are two peaks but you only want to fit a curve within a specific range asked by the user, how do you fit a curve?
0 comentarios
Respuestas (1)
Wayne King
el 10 de Jul. de 2012
Editada: Wayne King
el 10 de Jul. de 2012
Do you have the curve fitting toolbox?
If so, cftool has a Gaussian option built in.
Or from the command line:
x = (-3:0.01:3)';
y = exp(-x.^2/2);
yfit = fit(x,y,'gauss1');
2 comentarios
Wayne King
el 11 de Jul. de 2012
Do you mean datatype double-precision? why not, the example I have above uses double-precision vectors.
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!