Declaring a symbolic array real
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Kevin Bachovchin
am 20 Feb. 2014
Bearbeitet: Walter Roberson
am 20 Feb. 2014
Hello,
Hello I'm trying to create a symbolic array and ensure that it is real. When I use the code:
List = {'x','y'}
A = sym(List,'real')
the array A is not real and A' yields unwanted conjugates. Why doesn't this code ensure that A is real, and how can I fix it?
Thank you, Kevin
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 20 Feb. 2014
Bearbeitet: Walter Roberson
am 20 Feb. 2014
Using a cell array as the first argument to sym() is not a documented usage for any functionality of sym()
You can
sym('literalvariable', 'real')
and you can
sym(ExistingSymbolicArray, 'real')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!