matlab设置坐标轴标签公式 xticklabel yticklabel

【转载】nullMatlab在绘图的过程中,为了充分地说明数据,往往需要配置文字说明,如公式等。此时,就需要LaTeX来帮助图例中的文字格式更加美观了。Matlab 图形中title 、xlabel、ylabel 、zlabel、textbox 和legend 等的Interpreter 属性有三个属性: latex 、tex、none。默认为tex 。LaTeX语法格式如下:Tex字符含...https://blog.csdn.net/zyxhangiian123456789/article/details/87818320

test1=rand(1,20);                   %20长度
test2=rand(1,100);                  %100 长度
combineData = [test1,test2];        % 组合
group = [zeros(1,20),ones(1,100)];  
boxplot(combineData,group);
set(gca,'TickLabelInterpreter','latex'); 
set(gca,'xticklabel',{'$$-\pi$$','$$\frac{1}x$$'});
    set(gca,'TickLabelInterpreter','latex'); % 先设置这个!!
    set(gca,'XTick',[freqCentLog([21 28])]);
    set(gca,'Xticklabel',{0.4 4});           %{[freqCentLog([21 28])]/1e6}
    set(gca,'YTick',[MelScale([1 7 14 21 28])]);
    set(gca,'Yticklabel',{'$0$','${m_{\pi_1}}$','${m_{\pi_2}}$','${m_{\pi_3}}$','${m_N}$'});


matlab设置坐标轴标签公式 xticklabel yticklabel_第1张图片

你可能感兴趣的:(Matlab,大数据)