在MATLAB中将轴参数字体更改为Arial

在MATLAB中将轴参数字体更改为Arial,matlab,matlab-figure,Matlab,Matlab Figure,我需要将Axis参数的字体更改为Arial。需要对守则作出什么修订?我已经在用Arial字体定义轴参数,但它不起作用?谢谢 newfigure = h_figure; % fsize=[0 0 9 7]*1.394; % Genesys fsize=[0 0 9 7]*1.394; % Framemaker set(newfigure,'PaperUnits','centimeters'); % Festlegen der Dimensionen in cm der gesamten

我需要将Axis参数的字体更改为Arial。需要对守则作出什么修订?我已经在用Arial字体定义轴参数,但它不起作用?谢谢

newfigure = h_figure; 
%  fsize=[0 0 9 7]*1.394;  % Genesys
fsize=[0 0 9 7]*1.394;  % Framemaker

set(newfigure,'PaperUnits','centimeters');
% Festlegen der Dimensionen in cm der gesamten Grafik + Ueberschrift
set(newfigure,'PaperPosition',fsize); 
set(newfigure,'Position',fsize*254/6.1); 
figure(h_figure);
ax1=axes('Position',[0 0 1 1],'Visible','off');

% copy the axes into the new figure
%newaxes = copyobj(handles.axes2,newfigure);
%set(ax1,'Position',[0.1475 0.11 0.7688 0.841],'FontSize',[10],'GridLineStyle','-');
set(ax1,'Position',[0.5 0.11 0.7688 0.5],'FontSize',[20],'FontName','Arial','GridLineStyle','-','MinorGridLineStyle','-'); % Ra. 5.7.13
% print the new figure

%pos=0;
  pos=findstr(image_name, 'color'); % für farbige Plots!
  if isempty(pos)
      %print(newfigure,'-deps','-tiff',image_name);
      print(newfigure,'-dsvg',image_name);  %--------------------------------------------------------------------------------------------------------------- NEW MODIFICATION
  else
      print(newfigure,'-depsc','-tiff',image_name);    
  end

% save smithchart
savefiguresmith_cmd_ext(handles)
%print(newfigure,'-deps','-tiff',filename);
% close the new figure
%close(newfigure)

我想我发现了问题:
对于要更新的字体,您应该在设置字体后执行
drawnow
pause
功能

请参阅以下代码示例:

figure;
ax1 = gca;
plot(-pi:0.1:pi, sin(-pi:0.1:pi), 'Parent', ax1);
for i = 1:10
    set(ax1, 'FontSize',20,'FontName','Arial')
    drawnow
    pause(0.5);
    set(ax1, 'FontSize',20,'FontName','Courier New')
    drawnow
    pause(0.5);
end

我想我发现了问题:
对于要更新的字体,您应该在设置字体后执行
drawnow
pause
功能

请参阅以下代码示例:

figure;
ax1 = gca;
plot(-pi:0.1:pi, sin(-pi:0.1:pi), 'Parent', ax1);
for i = 1:10
    set(ax1, 'FontSize',20,'FontName','Arial')
    drawnow
    pause(0.5);
    set(ax1, 'FontSize',20,'FontName','Courier New')
    drawnow
    pause(0.5);
end

尝试更改父级
的属性,而不是
。什么操作系统和MATLAB版本?MATLAB 2015版本和32位Windows 7操作系统system@WasimAkhtar如果将其保存为PNG而不是矢量图形,字体是否正确?请尝试更改父图形的属性,而不是
。什么操作系统和MATLAB版本?MATLAB 2015版本和32位Windows 7操作系统system@WasimAkhtar如果将其保存为PNG而不是矢量图形,字体是否正确?