How can I fit a curve at the bottom of the plot below?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Stephen Tete
el 4 de Jul. de 2023
Editada: Stephen Tete
el 4 de Jul. de 2023
I have the attached dataset and I want to fit a curve at the bottom of the curve. See the attached photo. The original data is in blue and the fit is that in black.
Sample data is attached. Thank you in advance
0 comentarios
Respuesta aceptada
Matt J
el 4 de Jul. de 2023
Editada: Matt J
el 4 de Jul. de 2023
5 comentarios
Matt J
el 4 de Jul. de 2023
Ok, but what help do you still require? As you can see below, the recommendations from my last comment work for y.txt as well.
[~,y]=readvars('y.txt');
x=(1:numel(y))';
S=[1,0.7,0];
for s=S
k=boundary(x([1:end,1]), y([1:end,1]),s);
k=k(diff(k)>0);
plot(x(k),y(k),'-.');hold on
end;
legend("s="+S); xlim([100,400])
Más respuestas (0)
Ver también
Categorías
Más información sobre Curve Fitting Toolbox 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!