用MATLAB输出eps矢量图

用MATLAB输出eps矢量图_第1张图片

问题:

 

给定点的位置,描出这些点。将画好的图形保存为.eps。

 

%从文件中导入点的位置,描点。点位置的格式为:x,y 或者 x y %filename = 'siggraph_2d.txt'; %data = load(filename);%load data from current folder %X = data(:,1); %Y = data(:,2); % 测试实例: X = 1:10:100; Y = 1:10:100; set(gcf,'Color','w');%set the color of figure background as white plot(X,Y,'k.','MarkerSize',6); %画的形状为., size 为6; axis equal %设置坐标等比例 axis([0,100,0,100]); %设置坐标轴的范围 axis on %坐标系开关 

你可能感兴趣的:(测试,matlab,图形,plot)