Converting string to function/number
7 次查看(过去 30 天)
显示 更早的评论
Hello, sorry to bother your time. So in this case, my problem is, i'm trying to design an app using app designer that can take user input in string and convert it into numbers. However, when i try to use some mathematical function like 'sin, cos, exp' etc, as an input, i want those strings to be converted into the mathematical function as they were stated. How can i achieve this?
2 个评论
Stephen23
2022-5-27
编辑:Stephen23
2022-5-27
"How can i achieve this?"
If you are interested in writing debuggable, robust, secure code and have only a limited number of such functions then use SWITCH or a cell array of explicit function handles or similar.
If you are happy with the risks of allowing the user to be able to run anything then use STR2FUNC.
回答(3 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!