matlab的输出符号变量的latex公式

您所在的位置:网站首页 WPS计算结果转化为计算表达式 matlab的输出符号变量的latex公式

matlab的输出符号变量的latex公式

2024-07-11 20:35| 来源: 网络整理| 查看: 265

在使用符号变量时,matlab的结果有可能非常长,并且出现*^希腊字母的英文等符号,不便于直接观察想要研究的式子,在此提供两种直接观察matlab的公式的方法

1.使用函数 function h=symdisp(s) %//SYMDISP Display a symbolic expression in human readable form. %// symdisplay(S) displays the symbolic expression S in a small figure window, %// using standard mathematical notation. %// %// Examples: %// syms x t positive %// f=taylor(cos(x)); %// symdisp(f) %// f=int(exp(-t)*t^(x-1),t,0,inf); %// symdisp(f) %// %// Required toolbox: Symbolic Math %// %// See also SYMBOLIC PRETTY. if ~isa(s,'sym') s=sym(s); %error('输入参数必须是sym类型,请使用 sym() 将你的结果转化为sym类型.') end S=['$',latex(s),'$']; S=strrep(S,'&','& \quad'); S=strrep(S,'{\it','\mathrm{'); h=msgbox(S,'字符的数学展示形式'); 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');

保存为symdisp.m,然后直接使用便有以下效果: (注意:公式不能太长,否则无法显示完全或者会报错) 在这里插入图片描述

2.直接导出latex语句

直接使用latex函数,输出latex语句,复制粘贴到mathtype或texlive中即可 在这里插入图片描述

粘贴到mathtype 在这里插入图片描述



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3