Symbolic Matrix has extra blank row
조회 수: 2 (최근 30일)
이전 댓글 표시
When I do this:
>> syms b
>> C = [1 b; b 2]
C =
[1 b]
[ ]
[b 2]
The online example doesn't show this but I always get a blank row. What am I doing wrong? With all numbers, I get an ordinary matrix.
댓글 수: 0
답변 (2개)
madhan ravi
2018년 9월 4일
편집: madhan ravi
2018년 9월 4일
OR TRY:
C = str2sym('[1 b; b 2]')
Edited after Sir walter‘s comment.
댓글 수: 10
madhan ravi
2018년 9월 5일
편집: madhan ravi
2018년 9월 5일
If you find our (me and sir Walter‘s) answer useful please do accept my answer.
Carol Hurwitz
2018년 9월 4일
댓글 수: 2
Walter Roberson
2018년 9월 5일
Is it possible that you have Maple installed on the system that has the problem?
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!