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

조회 수: 3 (최근 30일)
ANDRÉS MAURICIO DÍAZ BELTRÁN
ANDRÉS MAURICIO DÍAZ BELTRÁN 2021년 3월 16일
답변: Asvin Kumar 2021년 3월 19일
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];

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by