你用uigetfile()函数可以得到路径,存在filename, pathname两个数组里 fpath=[pathname filename]fpath是全路径 fid=fopen(fpath,'wt');%%%%用它就可以写啦
function[]=saveimg(img,filename)path=input('Input the path you want to use: ','s');%以input()作为输入路径的方式,'s'代表以字符串形式写入path path=append(path,filename);%filename中必须包含图片扩展名imwrite(img,path);%此function中目标文件夹必须已存在,若要创建新文件夹,可以配合mkdir()函数...
saveas函数 saveas函数可以将指定figure中的图像或者simulink中的框图进行保存,相当于【文件】中的【另存为】,这样的功能更加适合我的需求 它有三种书写方式 saveas(gcf,[‘D:\保存的数据文件\方法1.png’]) saveas(gcf,[‘D:\保存的数据文件\方法2’,’.png’])</...
gcf固定,保存为1.png. 如果你想保存为别的格式,jpg什么的都可以,具体支持格式如下: