Como se evalúa y grafica una función en App Designer

2 vues (au cours des 30 derniers jours)
ANDRÉS MAURICIO DÍAZ BELTRÁN
Tengo mi codigo asi
Quiero evaluar esta funcion "sign(cos(2*pi*x))"
funcion =@(x) eval(app.FxEditField.Value);
f = funcion;
maxn = app.HarmonicsSpinner.Value;
xmin = str2double(app.StartEditField.Value);
xmax = str2double(app.EndEditField.Value);
x = linspace(xmin, xmax, 100);
y = polyval(f,x);
plot(app.UIAxes,x,y);
app.UIAxes.XLim = [xmin, xmax];

Réponses (1)

Asvin Kumar
Asvin Kumar le 19 Mar 2021
y = f(x);
This should work.
Esto debería funcionar (Spanish from Google Translate)

Catégories

En savoir plus sur Develop Apps Using App Designer 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