set(get(gca,'title'),'FontSize',10,'FontName','宋体'); % 设置X坐标标题字体大小,字型 set(get(gca,'XLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置Y坐标标题字体大小,字型 set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置坐标轴字体大小,...
ylabel('y','Interpreter','latex','FontName','Time New Roman','FontSize',12); % Axis Formatting: xAxis = get(gca,'xaxis'); set(xAxis,'TickLabelInterpreter','latex','FontSize',12, 'LineWidth',1.5, 'MinorTick','on'); yAxis = get(gca,'yaxis'); set(yAxis,'TickLabelInterpreter'...