String to matlabFunction is there any way to replace sym('StringFunction') in R2016a
显示 更早的评论
I wanted to create a simple GUI that take a function edited in edit text and convert it from a string to an anonymous function to use it in optimization problem, first I planned as follows:
strg = 'a*X-bX^2+c';
symStrg = sym(strg);
funStrg = matlabFunction(symStrg);
and processed with the resulting anonymous function, but this seems to be no longer supported starting from R2016a see here ,am I right? and if yes, is there any work around to have a GUI taking edited function as string and convert it to Matlab function that can be used in optimization problem or plotting or any other staff.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!