Can anyone suggest how to change the display allignment in command prompt for seeing list of equations
2 ビュー (過去 30 日間)
古いコメントを表示
These symbolic equations are right alligned, can we change to left allignment
3 件のコメント
dpb
2021 年 1 月 14 日
What happens if you try to cast eqn to string() or cellstr()? If can do that, then you can display the text however you wanted.
回答 (1 件)
Walter Roberson
2021 年 1 月 14 日
syms x
eq(1,1) = expand((x-1)^2);
eq(2,1) = expand((x-1)^10);
eq
char(eq)
arrayfun(@disp, eq)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Entering Commands についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!