Approximately equal sign in matlab plot

조회 수: 35 (최근 30일)
Sonima
Sonima 2017년 5월 15일
편집: Sonima 2019년 8월 15일
Hi! I want to plot approximately equal sign on one axe of my plot in Matlab.

답변 (1개)

dpb
dpb 2017년 5월 15일
편집: dpb 2017년 5월 17일
Get pretty close approximation (so to speak :) ) that way...
hAx=axes;
xlim([0,27])
set(hAx,'xtick',[0 15 25])
hT=text(7.5, 0.0, '\approx', ...
'fontsize',14,'fontweight','bold', ...
'rotation',90,'horizontalalign','center');
produces
You'll have to rig up the actual axis limits it you want the asymmetrical ticks vis a vis position. Depending on what you actually have, may be able to just use 'xticklabel' with appropriate values at existing tick locations.

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by