can I show the polynomial without using syms in this way that I intend to do it?

2 ビュー (過去 30 日間)
what I intend to do is print the polynomial without variables and somehow I would like to add it in a textual way, that is, I do not know something like set (handles.edit9, get (handles.edit10, 'string') 'x') is an idea vague but can you do something like that?

採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 7 日
numeric_coefficients_in_descending_order_of_power = .... %row vector!
power_list = length(numeric_coefficients_in_descending_order_of_power)-1 : -1 : 0;
result = strjoin( sprintfc('%d * x^%d', [numeric_coefficients_in_descending_order_of_power; power_list].' ), ' + ');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by