How do you do numerical integration of a function in App Designer?

7 vues (au cours des 30 derniers jours)
Cayleigh Johnston
Cayleigh Johnston le 17 Août 2019
Is it possible to use the 'integral' function as in Matlab. I am struggling to write a function in terms of variable, say f(x), and then do integration on that function in AppDesigner.
My function is similar to x*0.25*(x/0.2)^0.1*exp(-(x/0.2)^0.1), and would like to integrate between two bounds that are user inputs within App Designer.
  1 commentaire
Adam Danz
Adam Danz le 19 Août 2019
Something in your app needs to trigger the function. It could be a button or a ValueChangedFcn. Once the function is invoked, from within the function you can extract all of the needed values from your GUI by using the app variable. You can write your function anywhere in your app and call it from the callback function.

Connectez-vous pour commenter.

Réponses (1)

Jyotsna Talluri
Jyotsna Talluri le 20 Août 2019
Use the numeric edit boxes to input the limits of integration and to display the result of integration.Function for integration can be written in your app and can be invoked by calling it in pushbutton callback. You can extract the values from editboxes in pushbutton callback .
methods (Access = private)
function results = func(app,n1,n2)
syms x;
f=@(x)x*0.25.*((x/0.2).^0.1).*exp(-(x/0.2).^0.1);
app.result.Value=integral(f,n1,n2);
end
end
% val1,val2,result are editboxes
% Callbacks that handle component events
methods (Access = private)
% Button pushed function: Button (callback)
function ButtonPushed(app, event)
n1=app.val1.Value;
n2=app.val2.Value; % editbox values
func(app,n1,n2);
end
end

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