Matlab顯示公式函數(shù),可直接復制調用

function h=symdisp(s)
if ~isa(s,'sym')
? ? s=sym(s);
? ? %error('輸入?yún)?shù)必須是sym類型,請使用 sym() 將你的結果轉化為sym類型.')
end
S=['$',latex(s),'$'];
S=strrep(S,'&','& \quad');
S=strrep(S,'{\it','\mathrm{');
h=msgbox(S,'Latex Show');
h1=get(h,'children');
h2=h1(1);
h3=get(h2,'children');
if isempty(h3)
? ? h2=h1(2); h3=get(h2,'children');
end
set(h3,'visible','off')
set(h3,'interpreter','latex')
set(h3,'string',S)
set(h3,'fontsize',20)
w=get(h3,'extent');
W=get(h,'position');
W(3)=max(w(3)+10,125);
W(4)=w(4)+40;
set(h,'position',W)
h4=h1(2);
if ~strcmp(get(h4,'tag'),'OKButton'), h4=h1(1); end
o=get(h4,'position');
o(1)=(W(3)-o(3))/2;
set(h4,'position',o)
set(h3,'visible','on')
set(h,'color','w');
標簽: