我正在尝试在情节的xlabel中使用希腊字母。互联网上的每个解决方案都说Matlab将接受tex。但是我的x轴代替了增量符号,而是简单地标记为“ D”
a = plot(0:40, y); hold on plot(delta_T,brechkraft, 'x') errorbar(delta_T, brechkraft,delta_b,'x'); title('2mm Oelschicht'); xlabel('\Delta'); ylabel('Brechkraft D in 1/cm'); annotation('textbox', [.2 .8 .1 .1],... 'String', {'Fit: f(x) = m*x + b', ['m = ', num2str(p(1)) ], ['b = ', num2str(p(2)) ]}); shg hold off saveas(a, 'abc1.png','png');