How do I fit a curve to the peaks of the data?
39 次查看(过去 30 天)
显示 更早的评论
I have tha above data and I need to fit a curve based on the peaks to get something like as shown below
0 个评论
回答(2 个)
Aditya Srikar
2023-3-31
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.
0 个评论
Star Strider
2023-3-31
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Curve Fitting Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!