3
我試圖在我的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');
無論默認字體Matlab在你的系統上使用的字體肯定有Delta嗎?你嘗試過不同的字體嗎? – Notlikethat
最後是什麼原因? – thewaywewalk