Accessing information within a structure in app designer and How to pass data from one push-button to the other

11 次查看(过去 30 天)
Hi, I am developing a simple app using the app designer. This is pretty new to me and I am not experienced when it comes to app designer or gui in general. I have the code below,
for i = numel(F(2))
U_R = [F.y]';
end
  1. Now F is a structure. It has 3 columns. Column 2 is labeled y and I want to assign y to U_R using U_R = [F.y]. When I run the gui I get an error '' Undefined fuction F for input arguments of type double'. How do I fix this problem?
  2. Also how do I add a property section such that I can access or pass data to every pushbutton in the gui (app)?
Thank you!
  4 个评论
Rachel Surridge
Rachel Surridge 2020-7-18
2. If F is in your base MATLAB workspace, you can import it into your app using a statement like this in the properties section of the app:
properties (Access = private)
F = evalin('base', 'F');
end
If the for loop you posted originally is inside the app, then I think the code above should resolve your first question too. F is likely not being recognized as a structure because the app doesn't know where to find it. Using the evalin statement will put F in a workspace that the app can access, so it will be able to recognize it as a structure.
Curious Mind
Curious Mind 2020-7-20
Hi Rachel, thanks for the code. F is not being displayed in the workspace. When I run the code on the matlab command line and F appears in the workspace and then I run the app using your code the it works. Is there a way I can pass information/output from the app to the workspace? As long as F appears in the workspace then your code will work because the app will recognize it. Thanks!

请先登录,再进行评论。

回答(1 个)

Cris LaPierre
Cris LaPierre 2020-7-18
In the upper left of app designer, you will have the ability to create properties. Use this to add a property to the app structure. This is what makes it available to all functions inside your app. See this page for speciic details.

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by