学习和分享。
工具/原料
电脑
matlab软件
方法/步骤
1、if~isempt鲻戟缒男y(get(groot,'CurrentFigure'))%如果现有的窗口没有图disp('Ther髫潋啜缅eareexistingfigures.')%显示Thereareexistingfigureselse disp('Therearenoexistingfigures.')%显示Therearenoexistingfiguresend
2、if~isempt鲻戟缒男y(findobj('Tag','myFigures')) disp('Ther髫潋啜缅eareobjectswiththistag.')%显示Thereareobjectswiththistagelse disp('Therearenoobjectswiththistag.')%显示Therearenoobjectswiththistagend
3、ifisgraph坡纠课柩ics(h,'figure') disp('hisavali颊俄岿髭dfigurehandle.')else disp('hisnotavalidfigurehandle.')end
4、ifisequal(h,groot) disp('histheroothandle')else disp('hisnottheroothandle')end
5、p=plot(magic(3));par=get(p,'Parent');objarray=[par{:}]';whosobjarray
6、p1=plot(1:10);p2=p1;p2==p1
7、l1=line;l2=line;isequal(l1,l2)
8、t=num2str(rand);fh=@(t)text(1,1,t);th=cellfun(fh,{t},'UniformOutput',false);