Symbolic Matrix has extra blank row
1 回表示 (過去 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!