How do I create an arbitrary polynomial with defined coefficient in vector form?

Hello! How do I create an arbitrary polynomial if we got the coefficients and the extent of the polynomial? We have the coefficients in a vector and the extent of the polynomial is a number. So we are unsure how to combine these two and to have a variable x (for example how do I write y = 2x + 5 if I have the coefficient [2 5]' and the extent is one?).
And we are doing this in MATLAB.

답변 (1개)

One way is
b= [2 5].';
x=1;
y=polyval(b,x);

댓글 수: 4

Thanks! But can I use this method to get a arbitrary polynomial? For example if I want polynomial of degree n?
Thank you! I understand it now
So, please Accept the answer...
I'll note it seems as if one should be able to use the Curve Fitting Toolbox cfit object, but it doesn't seem possible to load it with coefficients, only with data.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Polynomials에 대해 자세히 알아보기

질문:

2015년 12월 3일

댓글:

dpb
2015년 12월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by