using symbolic calculus on char strings (coming from a file)

3 Ansichten (letzte 30 Tage)
Hello, I'm currently using str2sym on char strings obtained from fgetl on a text file containing many lines of mathematical expressions that don't use Matlab syntax. More precisely, I perform some simple manipulations on those raw text strings (using regexprep for example), then I convert them using str2sym to make some simplifications, and I finally need to convert back the symbolic expressions to standard char strings in order to write them on a .m file (for later use). Two problems arise :
  • a warning arises when using str2sym ;
  • I don't know how to convert back the symbolic expressions to standard char strings
Can somebody help me ? Thanks in advance.
  5 Kommentare
genevois pierre
genevois pierre am 1 Dez. 2018
I apologize for having sent a wrong code ; here is a corrected version. Thank you for your help.
Walter Roberson
Walter Roberson am 1 Dez. 2018
? str2sym does exist in MATLAB starting from r2017b which is your release .
If you have a scalar sym variable to convert back to character then use char()
If you have a nonscalar sym variable then arrayfun @char with uniform 0 . You use that instead of char() of the whole array because char applied to the whole array willl return a character vector that starts with aa call to matrix() which has to do with internal representation of the array .

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

genevois pierre
genevois pierre am 1 Dez. 2018
Thank you for your answer ; a warning when using str2sym could mean that this function will be removed in a future version ? However, I think the question can be closed now ...
  1 Kommentar
Walter Roberson
Walter Roberson am 1 Dez. 2018
Bearbeitet: Walter Roberson am 1 Dez. 2018
there are warnings in r2017b about using sym() for converting expressions to symbolic but sym2var was new in that release and would not have a warning . Well just maybe in the case where the character vector was in mupad syntax , I would have to test that .

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by