필터 지우기
필터 지우기

how to find out the correct coefficients from a roots -vector

조회 수: 4 (최근 30일)
anonym
anonym 2012년 11월 16일
답변: Ahsan Zamee 2015년 2월 18일
Hi everbody Sry for my English ;)
I have a Problem mit those Matlab Functions : poly and roots for example, i have vector a with the polynomial coefficents
a =
2 4 6 8
The roots of these Polynom is roots(a) =
-1.6506
-0.1747 + 1.5469i
-0.1747 - 1.5469i
The poly matlab function can be used to find out the coefficients from roots
but when i use ist on my roots(a), i didnt become my vector a again.
ans =
1.0000 2.0000 3.0000 4.0000
Is there another Methode to find out the correct coefficents from roots ?
Many thanks
  댓글 수: 1
Jan
Jan 2012년 11월 16일
Please post the code you use. The text description "poly can be used to find out the coefficients" does not allow to estimate, if you made a mistake when calling poly().
Currently I find in your question:
a = [2, 4, 6, 8];
roots(a)
>> -1.6506
-0.1747 + 1.5469i
-0.1747 - 1.5469i
% Now poly() is mentioned
roots(a)
>> ans =
1.0000 2.0000 3.0000 4.0000
I do not see, what's going on.

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

답변 (2개)

Matt Fig
Matt Fig 2012년 11월 16일
anonym, you need to think about what you are doing. When you have:
a = [2 4 6 8];
this represents this polynomial:
2*x^3 + 4*x^2 + 6*x + 8 = 0
Now what happens if you divide both sides by 2?? MATLAB simply returns this reduced form:
poly(roots(a))
ans =
1.0000 2.0000 3.0000 4.0000

Ahsan Zamee
Ahsan Zamee 2015년 2월 18일
poly is not used to find the roots rather it is used to build polynomials.

카테고리

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