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!