Formula used to evaluate polynomial using polyval?

5 次查看(过去 30 天)
Hey,
I am using polyfit function ([p,S,mu] = polyfit(x,y,n)) to fit nth order polynomial to my data. I want to evalulate that polynomial using polyval function ([y,delta] = polyval(p,x,S,mu)). I would like to know the formulae with which polyval evaluates the function on the back ground.
Thanking You.
Best,
Aarush Sood

回答(1 个)

John D'Errico
John D'Errico 2020-4-9
The formula? It is a polynomial. There is no complicated formula.
But if you want to know how many of the tools in MATLAB work, just look at them. Do NOT use edit.
type polyval
You will see the exact formula.
  2 个评论
Aarush Sood
Aarush Sood 2020-4-9
Thank You.
But polyfit ([p,S,mu] = polyfit(x,y,n)), normalizes the data. I want the know formula with which polyval converts normalized data to actual data.
Steven Lord
Steven Lord 2020-4-10
See the third part of the Description section on the documentation page for the polyfit function or the description of the mu output argument on that page.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by