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.

Antworten (2)

madhan ravi
madhan ravi am 4 Sep. 2018
Bearbeitet: madhan ravi am 4 Sep. 2018

0 Stimmen

OR TRY:
C = str2sym('[1 b; b 2]')
Edited after Sir walter‘s comment.

10 Kommentare

madhan ravi
madhan ravi am 4 Sep. 2018
I tried your code and it works fine for me.
madhan ravi
madhan ravi am 4 Sep. 2018
if something is not clear let me know
madhan ravi
madhan ravi am 4 Sep. 2018
Install symbolic toolbox.
madhan ravi
madhan ravi am 4 Sep. 2018
Type ver in your command window and paste what shows here.
Walter Roberson
Walter Roberson am 4 Sep. 2018
The above would not work in R2018a or later.
madhan ravi
madhan ravi am 4 Sep. 2018
Oh that’s useful information @sir Walter thank you.
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
madhan ravi am 4 Sep. 2018
That’s really useful information @sir Walter.
madhan ravi
madhan ravi am 4 Sep. 2018
did it work @Carol Hurwitz?
madhan ravi
madhan ravi am 5 Sep. 2018
Bearbeitet: madhan ravi am 5 Sep. 2018
If you find our (me and sir Walter‘s) answer useful please do accept my answer.

Melden Sie sich an, um zu kommentieren.

Carol Hurwitz
Carol Hurwitz am 4 Sep. 2018

0 Stimmen

I still get the same output, using your code. Is there a package I need to install?

2 Kommentare

Carol Hurwitz
Carol Hurwitz am 5 Sep. 2018
Bearbeitet: Walter Roberson am 5 Sep. 2018
I installed MATLAB at work today, with symbolic package, and it works perfectly. I reinstalled it at home and I get the same error as before.
C = [b 1 3 6; 2 4*b b 7; 0 3 5 1]
C =
[b 1 3 6]
[ ]
[2 4 b b 7]
[ ]
[0 3 5 1]
I am using different versions of Windows. At home I'm using 8.1, at work Win 10, both on 64 bit machines. It worked when I pulled it up on my iphone this afternoon.
Walter Roberson
Walter Roberson am 5 Sep. 2018
Is it possible that you have Maple installed on the system that has the problem?

Melden Sie sich an, um zu kommentieren.

Produkte

Version

R2018a

Gefragt:

am 4 Sep. 2018

Kommentiert:

am 5 Sep. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by