string to calculation algorithm ?

3 Ansichten (letzte 30 Tage)
Max Müller
Max Müller am 16 Sep. 2014
Kommentiert: Max Müller am 16 Sep. 2014
Hey Guys, Imagine u have a GUI which hold the variable x = 1:10 (doubble). Now I want to create an Editbox which allows the user to enter a calculation algorithm.
for example: x*3.
Is it possible to convert this string (x*3) into an actual calculation algorithm ?
  1 Kommentar
Stephen23
Stephen23 am 16 Sep. 2014
The answers below give some solutions, including using eval and str2func , but keep in mind these could be dangerous as this allows the user to run arbitrary code, including system calls via MATLAB.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Michael Haderlein
Michael Haderlein am 16 Sep. 2014
eval(string)

Weitere Antworten (1)

Adam
Adam am 16 Sep. 2014
You can also create a function handle if you want, something like:
s = 'x*3';
s = ['@(x)' s];
f = str2func(s);
f(x);

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by