Using superscript, subscript or greek letters in app designer

조회 수: 14 (최근 30일)
asfsag gasfdas
asfsag gasfdas 2018년 9월 17일
편집: Joel Riggs 2018년 9월 29일
Hi every one,I have a problem with app designer. Currently I'm designing an standalone application with app designer. I want to use a drop down menu so user can select the unit. For example the first line in drop down is CFM, the second should be m^3/hr and etc. The problem is I don't know how display subscript or superscript in app designer windows. I created an standalone application with GUI before. I used HTML code for this purpose, for example HTML m<SUP>3</SUP>/h</HTML>, but it seems it doesn't work in app designer. I really appreciate if anyone can help me with this issue.

답변 (1개)

Joel Riggs
Joel Riggs 2018년 9월 29일
편집: Joel Riggs 2018년 9월 29일
Unfortunately App Designer doesn't seem to support the use of Tex or Latex interpreters like it does in figures and plots within the app.
The workaround seems to be using char() with the Unicode code for the character you want.
For example, to get
use:
function startupFcn(app)
app.DropDown.Items = {['m' char(179) '/hr'],['ft' char(179) '/' char(956) 's']};
end
The link below shows how to edit the startupFcn() so component properties can be changed once all components have been loaded.

카테고리

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