Info
This question is closed. Reopen it to edit or answer.
Converting char operations into usable ones
1 view (last 30 days)
Show older comments
How do i convert the string of '/' and '*' into usable operations for math so like 2/3 = .667 and so forth
0 Comments
Answers (2)
Star Strider
on 26 Feb 2016
I really should not tell you because this is extremely poor programming practice.
You must absolutely promise never to use it in your code.
x = eval('2/3')
0 Comments
Walter Roberson
on 26 Feb 2016
/ is the function named rdivide (for this purpose) and * is the function named times (for this purpose)
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!