sym是將字串和數值轉換為字元變數
比如
>>xx=sym("x+y")
class(xx)
xx=
x+y
ans=
sym
findsys則是找出字符號表達式中的自變數
findsym(xx)
x,y
findsym(S)forasymbolicexpressionormatrixS,returnsallsymbolicvariablesinSinlexicographicalorder,separatedbycommas.IfSdoesnotcontainanyvariables,findsymreturnsanemptystring.
findsym(S,n)returnsthenvariablesalphabeticallyclosesttox:
1.
Thevariablesaresortedbythefirstlettersintheirnames.Theorderingisxywzvu...aXYWZVU...A.Thenameofasymbolicvariablecannotbeginwithanumber.
2.
Forallsubsequentletterstheorderingisalphabetical,withalluppercaselettershavingprecedenceoverlowercase:01...9AB...Zab...z.
findsym(S)canreturnvariablesindifferentorderthanfindsym(S,n).
maple函式MATLAB7.7之前版本提供的一個執行maple核心符號運算的函式,因為7.7之前的版本符號工具箱內容使用的是Maple,不過之後使用的是MuPAD,因此maple函式也取消了
sym是將字串和數值轉換為字元變數
比如
>>xx=sym("x+y")
class(xx)
xx=
x+y
ans=
sym
findsys則是找出字符號表達式中的自變數
比如
findsym(xx)
ans=
x,y
findsym(S)forasymbolicexpressionormatrixS,returnsallsymbolicvariablesinSinlexicographicalorder,separatedbycommas.IfSdoesnotcontainanyvariables,findsymreturnsanemptystring.
findsym(S,n)returnsthenvariablesalphabeticallyclosesttox:
1.
Thevariablesaresortedbythefirstlettersintheirnames.Theorderingisxywzvu...aXYWZVU...A.Thenameofasymbolicvariablecannotbeginwithanumber.
2.
Forallsubsequentletterstheorderingisalphabetical,withalluppercaselettershavingprecedenceoverlowercase:01...9AB...Zab...z.
findsym(S)canreturnvariablesindifferentorderthanfindsym(S,n).
maple函式MATLAB7.7之前版本提供的一個執行maple核心符號運算的函式,因為7.7之前的版本符號工具箱內容使用的是Maple,不過之後使用的是MuPAD,因此maple函式也取消了