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 个评论
surya chandra gulipalli
Thank you for your reply,
Its the result of my program on symbolic variables. 'eqn' stores list of equations. when I want to see in command window, typing 'eqn' displays with right allignment. So I need to scroll command window to right side everytime. This was bit annoying
dpb
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
Walter Roberson 2021-1-14
syms x
eq(1,1) = expand((x-1)^2);
eq(2,1) = expand((x-1)^10);
eq
eq = 
char(eq)
ans = '[x^2 - 2*x + 1; 45*x^2 - 10*x - 120*x^3 + 210*x^4 - 252*x^5 + 210*x^6 - 120*x^7 + 45*x^8 - 10*x^9 + x^10 + 1]'
arrayfun(@disp, eq)

Community Treasure Hunt

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

Start Hunting!

Translated by