필터 지우기
필터 지우기

Referring to object names in App Designer as elements of an array

조회 수: 34 (최근 30일)
Saeid
Saeid 2024년 7월 30일 10:47
댓글: Voss 2024년 7월 30일 15:38
In App Designer, I want to introduce the names of a series of objects (e.g. uifigures) in an array, and then refer to them by their index. For example:
PlotNames={'app.XY1' 'app.XY2' 'app.XY3'}
for iPN=1:length(PlotNames)
plot(PlotNames{iPN},X(iPN),Y(iPN))
end
but when I do this I get the error: 'Invalid first data argument.'
Is it possible to refer to object names in App Designer as elements of an array?

답변 (2개)

Steven Lord
Steven Lord 2024년 7월 30일 14:19
You can access properties of an object using a variable name using the syntax shown in the Reference Properties Using Variables section on this documentation page.
  댓글 수: 1
Voss
Voss 2024년 7월 30일 15:38
@Saeid: Your example code adapted to this approach would look like this:
PlotNames = {'XY1' 'XY2' 'XY3'};
for iPN = 1:numel(PlotNames)
plot(app.(PlotNames{iPN}),X(iPN),Y(iPN))
end

댓글을 달려면 로그인하십시오.


Aditya
Aditya 2024년 7월 30일 10:53
Hi Saeid,
In MATLAB, you cannot directly store object names as strings in an array and then refer to them. Instead, you can store the object handles directly in an array. This allows you to refer to the objects by their index without encountering errors.
Updated code:
% Assuming XY1, XY2, and XY3 are UIAxes in your app
PlotHandles = {app.XY1, app.XY2, app.XY3};
for iPN=1:length(PlotNames)
plot(PlotNames{iPN},X(iPN),Y(iPN))
end
I hope this solves your issue!

카테고리

Help CenterFile Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by