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?
0 个评论
采纳的回答
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 Exchange 中查找有关 Number Theory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!