Passing Data between two Apps

13 visualizaciones (últimos 30 días)
Hidd_1
Hidd_1 el 5 de Mayo de 2022
Editada: Hidd_1 el 10 de Mayo de 2022
I have created two apps (App1, and statitics), and I would like to pass the following data from the first one into the second one when the user click of a button.
The call back function to call the second app looks like this:
I don't know how should I fix the code, so that when I click on the statistics button I get the second app loaded with the needed data.
I've already read the follwoing page, but I didn't understand how to fix it:
Thus I would appreciate any valuable input!

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 5 de Mayo de 2022
  5 comentarios
Cris LaPierre
Cris LaPierre el 10 de Mayo de 2022
It looks like you are not following the instructions I linked to. Perhaps open the example files and inspect the two apps. You can do so by running this command:
openExample('matlab/AppsThatShareDataExample','supportingFile','DialogAppExample');appdesigner('MainAppExample');
Hidd_1
Hidd_1 el 10 de Mayo de 2022
Editada: Hidd_1 el 10 de Mayo de 2022
here are the changes I've made:
I added the following in the 1st app
methods (Access = public)
function Import(app, sz, c)
% Store inputs as properties
app.info_1 = sz;
app.data_1 = c;
end
end
I added "Statistics" in the propereties in the 1st app (with data_1 and info_1).
Here is the pushback function for Statistics:
function StatisticsButtonPushed(app, event)
app.DialogApp = Statistics(app, app.info_1, app.data_1);
end
In the 2ed App I added "CallingApp" to the properties, and here is the pushback function for the import button:
function ImportButtonPushed(app, event)
Import(app.CallingApp);
end
am I doing progress? and What's still missing?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by