matlab绘图转autocad的dwg

写了一份专利,里面用到了一些matlab plot出来的图。专利部的同事让我转成autocad的dwg格式。原以为用原始数据在autocad里画几条曲线就ok了。后来想想,没有那么简单。因为图里还有网格,横坐标、纵坐标以及数值标签,还有图例。这样的工作太浩大了。而且我对autocad基本不熟,花功夫在上面实在是太耗时间了。于是找到了通过转存AI格式,再转成dwg的格式的方法。

注:要用到的软件有matlab,adobe Illustrator和autocad

 

首先,plot出想要处理的图形,例如 

x = -pi:.1:pi;
y = sin(x);
p = plot(x,y)
set(gca,'XTick',-pi:pi/2:pi)
set(gca,'XTickLabel',{'-pi','-pi/2','0','pi/2','pi'})
xlabel('-\pi \leq \Theta \leq \pi')
ylabel('sin(\Theta)')
title('Plot of sin(\Theta)')
% \Theta appears as a Greek symbol (see String)
% Annotate the point (-pi/4, sin(-pi/4))
text(-pi/4,sin(-pi/4),'\leftarrow sin(-\pi\div4)',...
     'HorizontalAlignment','left')
% Change the line color to red and
% set the line width to 2 points 
set(p,'Color','red','LineWidth',2)


你可能感兴趣的:(matlab)