Is it possible to print some characters like ‘ح’ (U+062D) as the title of an image in a subplot?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using some Java as described by Yair Altman on undocumentedmatlab.com, you can add HTML-aware labels to your plot. You can therefore put your Unicode character ‘ح’ (U+062D) into such a label using the
&#xHEXCODE;syntax, in your caseح:This should display an empty figure window which just contains that single Unicode character. Tested on Matlab R2010b with WinXP.
For more information about tricking MATLAB into displaying Unicode, see this SO post which might in parts be specific to OS X.
Note that a few characters which are not available in your current character set can be available through the native LaTex capabilities of MATLAB
title()as discussed here; however this is far from covering all of Unicode.