set variable in App Designer
25 次查看(过去 30 天)
显示 更早的评论
Hi i want to save the Value from a variable number of Field in a variable number of cache. I know hot to get the Value from a variable number of field but i dont know how to safe them.
app.Mat_Cache(v) = get(app.MatField(v),'Value');
采纳的回答
Cris LaPierre
2021-4-6
Variables in an app are considered properties. See the Share Data Within App Designer Apps for how to create the property and then use it in your app. You'll also see that you do not need to use get or set anymore.
4 个评论
Cris LaPierre
2021-4-8
I stand corrected. When you capture multiple objects in a matrix, that variable is no longer a graphics object, and you cannot access the value that way. You'll have to use set and get. Sorry for the confusion.
app.Mat_Cache(v) = get(app.MatField(v),'Value');
% or
set(app.MatField(v),'Value',200+v);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File 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!