In a GUI, How do I accept user input and turn string into a function? ex. 3*x^2 +2*x -5

1 vue (au cours des 30 derniers jours)
% --- Executes on button press in Graph.
function Graph_Callback(hObject, eventdata, handles)
syms x y;
userInput = get(handles.user1,'String');
fun = @(x) userInput;
x=0:10;
y = fun(x);
axes(handles.axes1);
plot(x,y);
xlabel('x'); ylabel('y');
guidata(hObject,handles);

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Déc 2016
fun = str2func( ['@(x)' userInput])

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by