converting a binary vector to polynomial form?
古いコメントを表示
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
2013 年 4 月 24 日
0 投票
4 件のコメント
Malik
2013 年 4 月 24 日
Walter Roberson
2013 年 4 月 24 日
What output form are you looking for? A function handle? A string written to a file? Or you have a binary polynomial vector P and a matrix of values x and you want y to be the polynomial implied by P evaluated over x?
Malik
2013 年 4 月 25 日
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 ?
カテゴリ
ヘルプ センター および File Exchange で Polynomials についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!