Symbolic Matrix has extra blank row
이전 댓글 표시
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.
답변 (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월 4일
I tried your code and it works fine for me.
madhan ravi
2018년 9월 4일
if something is not clear let me know
madhan ravi
2018년 9월 4일
Install symbolic toolbox.
madhan ravi
2018년 9월 4일
Type ver in your command window and paste what shows here.
Walter Roberson
2018년 9월 4일
The above would not work in R2018a or later.
madhan ravi
2018년 9월 4일
Oh that’s useful information @sir Walter thank you.
Walter Roberson
2018년 9월 4일
MATLAB warned for a number of releases about using sym() of anything that was not numeric or just the name of a variable. In R2017b, they finally provided str2sym() to convert expressions to symbolic. In R2018a, they disabled using sym() on expressions.
>> C = str2sym('[1 b; b 2]')
C =
[ 1, b]
[ b, 2]
madhan ravi
2018년 9월 4일
That’s really useful information @sir Walter.
madhan ravi
2018년 9월 4일
did it work @Carol Hurwitz?
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일
0 개 추천
댓글 수: 2
Carol Hurwitz
2018년 9월 5일
편집: Walter Roberson
2018년 9월 5일
Walter Roberson
2018년 9월 5일
Is it possible that you have Maple installed on the system that has the problem?
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!