less than or equal as symbol in prompt of inputdlg

9 views (last 30 days)
Hello :)
I'm trying to use the symbol in the prompt of my inputdlg but I can't make it work.
Here is the code:
prompt={...
sprintf('%s\n%s','some text in first line',...
'enter number (5 < x < 50):'),... % here it would be great with the <= symbol instead
sprintf('%s\n%s','smoe more text',...
'i would really appreciate your help!')};
answer=inputdlg(prompt);
I would appreciate your help!

Accepted Answer

Guillaume
Guillaume on 2 Jun 2019
≤ is unicode U+2264, One way to insert it into text is with another sprintf:
sprintf('enter number (5 \x2264 x \x2264 50):')
You could always type <= to avoid resorting to Unicode.
  2 Comments
Dimitri
Dimitri on 6 Nov 2021
Oh...you are the man! THANK YOU!!! HAd the same issue and spent an hour trying to figure it out....

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!