using symbolic calculus on char strings (coming from a file)
Show older comments
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 Comments
madhan ravi
on 29 Nov 2018
can you upload a sample and your full code
genevois pierre
on 1 Dec 2018
madhan ravi
on 1 Dec 2018
Undefined function or variable 'srclines'.
Error in COMMUNITY (line 16)
while isrclines <= numel(srclines)
genevois pierre
on 1 Dec 2018
Walter Roberson
on 1 Dec 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 .
Accepted Answer
More Answers (0)
Categories
Find more on Operations on Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!