You need the amssymb package to render this symbol. With some digging you should be able to add this package to your Matlab copy, but you should be aware that in that case your code is no longer portable to another copy of Matlab, unless that one has amssymb as well.
how to insert "Filled Triangle" as text box in a Matlab figure?
조회 수: 7 (최근 30일)
이전 댓글 표시
I would like to insert a filled triangle as a text box on a Matlab figure. I am using the following code. But it is giving an error as : Warning: Error updating TextBox. Character vector must have valid interpreter syntax: $\blacktriangle$
% Create textbox
annotation(figure1,'textbox',...
[0.142384388807069 0.314861460957179 0.0372916053019146 0.0730478589420656],...
'Color',[0 0 1],...
'String','$\blacktriangle$',...
'LineStyle','none',...
'Interpreter','latex',...
'FontSize',24,...
'FitBoxToText','off');
댓글 수: 0
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!