uilable with variable and char

조회 수: 2 (최근 30일)
TheDice
TheDice 2021년 4월 22일
댓글: Scott MacKenzie 2021년 4월 22일
Hello I have a label into which I integrate my variable v. If I write it like in the example it works. But I would like that there is "Measurement "v" char(948)". How can i solve my problem?
app.Field(v) = uilabel('Parent',app.Panel_2,'Position',[10,10,110,22],'Text',(("Measurement "+v)));
  댓글 수: 2
TheDice
TheDice 2021년 4월 22일
v is a double
Scott MacKenzie
Scott MacKenzie 2021년 4월 22일
What do you mean by
I would like that there is "Measurement "v" char(948)"
What, exactly, are you trying to present in the label? It would help if you gave an example.

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

채택된 답변

VBBV
VBBV 2021년 4월 22일
%if true
app.Field(v) = uilabel('Parent',app.Panel_2,'Position',[10,10,110,22],'Text',["Measurement "+v]);
  댓글 수: 3
VBBV
VBBV 2021년 4월 22일
편집: VBBV 2021년 4월 22일
text = sprintf('Measurement %d \t Tan %s',v,char(948));
app.TanDelta_Field(v) = uilabel('Parent',app.Panel,'Position',[10,10,110,22],'Text',text);
VBBV
VBBV 2021년 4월 22일
Try the above

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

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by