请教Matlab图片如何转换成TIFF
我用Matlab(Version7.2, R2006a)生成了一些contour的figure,都粘贴到了word中,我想知道现在如何把word中的这些figure转成对应TIFF图片文件?
而且我还发现,我在Matlab中生成的contour figure无法存成TIFF文件,先是报错:
"Error using ==> strcmp
Too many input arguments"
然后Matlab就再也无法弹出Save As对话框,同时报错:"
??? Illegal right hand side in assignment. Too many elements.
Error in ==> filemenufcn>localSaveExport at 235
lastexport_ext = typesorig{lastexporttypevalue,3};
Error in ==> filemenufcn at 55
localSaveExport(hfig)
??? Error using ==> filemenufcn(gcbf,'FileSaveAs')
Illegal right hand side in assignment. Too many elements.
??? Error while evaluating uimenu Callback"
多谢~~
你怎么存的亚?
我试了一下没问题呀,
比如
[c,h] = contour(...)
saveas(h,'test.tiff')
没问题呀
【 在 windfacing (迎风*潇洒一点) 的大作中提到: 】
: 我用Matlab(Version7.2, R2006a)生成了一些contour的figure,都粘贴到了word中,我想知道现在如何把word中的这些figure转成对应TIFF图片文件?
: 而且我还发现,我在Matlab中生成的contour figure无法存成TIFF文件,先是报错:
: "Error using ==> strcmp
: ...................