Creating a polynomial data set
7 次查看(过去 30 天)
显示 更早的评论
Hi all,
im currently trying to create a polynomial output of my data, basically i have a data set containing time (in seconds ( X axis)) and a tide height in meters ( Y axis) when plotted the tide data over the time series is very noisy due to wave / wind action on the vessel changing the elevation of the recording device.
so to account for this i wish to create a fitted polynomial data set under a new variable name which i can output independently of the original tide variable. this will also account for times where my measuring devise failed and im interpolating data
so far to evaluate which degree of polynomial best fits the data set i have been using the code'
poly3=(fit(time,tide,'poly3','Normalize', 'on'); % clearly i change the 'poly3' value depending upon the degree i need
this works fine for estimating a best fit from a plot of the above variable, but how do i get from this point to creating an adjusted tide height using the polynomial curve i have created.
Regards Gavin
0 个评论
采纳的回答
更多回答(1 个)
Jos (10584)
2014-1-24
Take a look at POLYFIT and POLYVAL as well:
PFpar = polyfit(time, tide, 3)
AdjustedTide = polyval(PFpar,time)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!