当我尝试在Matlab
中以.eps
格式打印3d图形(实际上只是这个图形)时,它不提供矢量图形而是提供栅格化图形作为我的输出。“ / p>
这个问题只有这个特殊的数字才会持续存在,其余部分效果很好(正如预期的那样)。
此问题在2014b
,2015a
和2016b
中都得到了复制,因为这些是唯一可用的软件版本,我无法测试其他版本。此外,如果有其他人遭遇这类问题吗?
这是我第一次遇到这样的问题,因为到现在为止我从未遇到任何图形打印问题(包括2d和3d)。
请分享您的建议以克服这个问题。
clc
clear all
close all
warning('off','all')
warning
%% print size def
width = 6; % Width in inches
height = 4.9; % Height in inches
alw = 1; % AxesLineWidth
fsz = 12; % Fontsize
lw = 1.5; % LineWidth
msz = 8; % MarkerSize
set(0,'defaultLineLineWidth',lw); % set the default line width to lw
set(0,'defaultLineMarkerSize',msz); % set the default line marker size to msz
set(0,'defaultLineLineWidth',lw); % set the default line width to lw
set(0,'defaultLineMarkerSize',msz); % set the default line marker size to msz
set(0,'DefaultAxesFontSize',fsz)
% Set the default Size for display
defpos = get(0,'defaultFigurePosition');
set(0,'defaultFigurePosition', [defpos(1) defpos(2) width*100, height*100]);
% Set the defaults for saving/printing to a file
set(0,'defaultFigureInvertHardcopy','on'); % This is the default anyway
set(0,'defaultFigurePaperUnits','inches'); % This is the default anyway
defsize = get(gcf, 'PaperSize');
left = (defsize(1)- width)/2;
bottom = (defsize(2)- height)/2;
defsize = [left, bottom, width, height];
set(0, 'defaultFigurePaperPosition', defsize);
%% loading the data
load('E_fw')
%norm of fw with mass
j=1;
for i=2:1:length(E_m1)
if length(E_m1{i})>1
e_m1{j}=E_m1{i}';
L_m1(j)=length(E_nm1{i});
j=j+1;
end
end
%% plotting m1
t_m1=(0:1:max(L_m1)-1)/8000;
x_m1=1:1:length(L_m1);
for i=1:1:length(L_m1)
B_m1(:,i)=[e_m1{i};ones(max(L_m1)-length(e_m1{i}),1)*inf];
end
[X_ss,Y_ss]=meshgrid(t_m1,x_m1);
g=figure
surf(X_ss,Y_ss,abs(B_m1'), 'LineStyle', 'none', 'FaceColor', 'interp'),grid minor
colormap(flipud(hot))
view([-1, -1, 7])%xaxis from 0 (neg, same for all)
camlight headlight
lighting gouraud
xlabel('op');
ylabel('dop');
zlabel('V');
box on
ax = gca;
ax.LineWidth = lw;
zlim([0 1.6])
xlim([0 0.3])
ylim([1 max(max(abs(Y_ss)))])
set(g,'Units','Inches');
pos = get(g,'Position');
set(g,'PaperPositionMode','Auto','PaperUnits','Inches','PaperSize',[pos(3),
pos(4)])
print('map_m1_3d', '-depsc', '-r0');
由于问题仅针对此特定情况发生,因此我请求您使用链接中提供的数据文件以及此MWE。 Mathworks也报告了这个问题。
The necessary data file E_fw.mat
is available in the g-drive link inside the data.zip
答案 0 :(得分:2)
对于所有在这里指导我的人(以及将来可能会遇到同一问题的人),我收到了Mathworks的回复,说它确实会在某些情况下自动切换到光栅化模式(他们没有解释如何)违反(如@AndrasDeak解释)。因此,覆盖的方法是在print参数中使用-painters
扩展,唯一的缺点是输出文件的大小以非线性方式爆炸,这明显取决于输出数字的复杂性。
我还应该说,当使用-painters
扩展名覆盖内部交换机时,在我的情况下,我最终得到的.eps
大小约为450 MB,这实际上是巨大的重复用于文档目的。