using symbolic calculus on char strings (coming from a file)
Mostra commenti meno recenti
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 Commenti
madhan ravi
il 29 Nov 2018
can you upload a sample and your full code
genevois pierre
il 1 Dic 2018
madhan ravi
il 1 Dic 2018
Undefined function or variable 'srclines'.
Error in COMMUNITY (line 16)
while isrclines <= numel(srclines)
genevois pierre
il 1 Dic 2018
Walter Roberson
il 1 Dic 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 .
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Operations on Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!