필터 지우기
필터 지우기

Entering Special Characters Such as Greek in Editor and Command Window?

조회 수: 13 (최근 30일)
So I am trying to insert a special greek character in my .m script file to be displayed in the command window.
I tried using /omega but the character doesn't display. Here is the code where I am trying to use the actual symbol.
omegavalue = input('Enter the value of /omega');
How can I fix this? I am new to MATLAB programming language.

채택된 답변

Greg
Greg 2018년 2월 4일
편집: Greg 2018년 2월 4일
According to the documentation for sprintf, you can display any Unicode character with "\x" followed by its hex value. Then pass it into input:
input(sprintf('\x03c9'))
  댓글 수: 1
Walter Roberson
Walter Roberson 2018년 2월 4일
This requires R2014b or later; before that it typically did not work on MS Windows (but sometimes did). I am not positive it worked even with R2014b on MS Windows for certain.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by