필터 지우기
필터 지우기

converting a binary vector to polynomial form?

조회 수: 4 (최근 30일)
Malik
Malik 2013년 4월 24일
If i have a binary vector:
x = 1 0 0 1 0 1
how can i convert this to polynomial form:
y = x.^5+x.^2+1
regards.

답변 (1개)

Walter Roberson
Walter Roberson 2013년 4월 24일
If you have the Symbolic Toolbox, use poly2sym
  댓글 수: 4
Malik
Malik 2013년 4월 25일
i have a binary vector representing the 1 and 0 coefficients of a polynomial. i want to convert it to polynomial form, so that its easy for me to see the positions at which i have 1 as the co-efficient.
Walter Roberson
Walter Roberson 2013년 4월 26일
You could just
find(fliplr(x)) - 1
which would, in this example, output 5 2 0
Anyhow, so you are looking for a string output ?

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

카테고리

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