Converts symbolic variables to a Matlab equation string insuring that only array opps are used. Symbolic arrays are converted to linear Cell arrays of strings. This function is most often used to prepare symbolic answers for use with the "eval()" command. Also, converts Maple "atan" function to Matlab "atan2". Converts
Maple "array([[a,b],[c,d]])" notation to matlab "[a,b;c,d]" notation.
Note: eval() of a matrix only works if all the input variables have single values. i.e. vectors and arrays won't work.
Note2: eval() does not work on Cell arrays directly. Use "Cell_array{index}" to keep eval() happy
Martin Lawson (2021). sym2str (https://www.mathworks.com/matlabcentral/fileexchange/19217-sym2str), MATLAB Central File Exchange. Retrieved .
Inspired: campodir
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
Very helpful, because in MatLab R2014 fprintf() can't understand sym().
So now I can run the code from R2017 at my R2014
Thanks!
Thank you very much!!
Great code, but the example is a bit weird.