How do I fit a curve to the peaks of the data?

36 visualizaciones (últimos 30 días)
Rukundo Wellen
Rukundo Wellen el 31 de Mzo. de 2023
Respondida: Star Strider el 31 de Mzo. de 2023
I have tha above data and I need to fit a curve based on the peaks to get something like as shown below

Respuestas (2)

Aditya Srikar
Aditya Srikar el 31 de Mzo. de 2023
Hi Rukundo Wellen
Curve Fitting Toolbox contains functions for fitting curves and surfaces to data.
You can fit the curve to the peaks of data by using fit() function.
Based on characteristics of data, you can use library models like gaussian, fourier, polynomial, sin etc to obtain more precise curves.
You can refer the documentation for implementation details
Hope it helps.

Star Strider
Star Strider el 31 de Mzo. de 2023
The approach depends on the result you want from the curve.
If you want parameters, then findpeaks or islocalmax will be necessary to define the peaks, then use polyfit and polyval to fit them and return the fitted curve and the appropriate parameters.
If you only want the curve itself, the envelope function using the 'peaks' option could work.

Categorías

Más información sobre Curve Fitting Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by