%%使用print函数,第一个参数一定是figure的句柄,第二个参数设置格式,第三个参数是指定文件夹
%代码如下
h=figure;
plot(1:10);
print(h,'-djpeg','F:pic1.jpg');
%具体细节,在matlab 中输入,help print,查看!