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

5 Ansichten (letzte 30 Tage)
ANDRÉS MAURICIO DÍAZ BELTRÁN
Beantwortet: Asvin Kumar am 19 Mär. 2021
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];

Antworten (1)

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

Kategorien

Mehr zu Develop Apps Using App Designer 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