Run code with two sections - app designer

3 次查看(过去 30 天)
I made an example of a problem I have.
I wrote a code with 2 sections
When I press RUN_1 it calculates X * Y (this is works)
When I press RUN_2 he does not remember the value XY so he does not compute me XYZ (this is not works :( )
Thanks!

采纳的回答

Cris LaPierre
Cris LaPierre 2021-7-13
编辑:Cris LaPierre 2021-7-14
You need to keep in mind variable scope. All your callbacks are functions. Variables created inside a function are lost once the function terminates. The way around this in app designer is to create an app property to capture these values. You can then access them using the app.varName syntax.
See here for more.
  3 个评论
Shahar ben ezra
Shahar ben ezra 2021-7-15
Hello again
Unfortunately I could not make it work
What should I call the function?
Is it possible for you to give me an example?
tnx
Cris LaPierre
Cris LaPierre 2021-7-15
You are not creating a function. You are creating a propery. There is no need to change the name. Use XY. The only change is, instead of using XY, you would now use app.XY.

请先登录,再进行评论。

更多回答(0 个)

类别

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

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by