我想要做的是在完整和单独的图中输入数学公式(通过LaTeX),仅用于数学公式,或者能够在命令窗口中显示数学公式(再次通过LaTeX)。
这在MATLAB中可行吗?
谢谢!
答案 0 :(得分:4)
我不确定命令提示符,但您可以使用text
将LaTex文本添加到MATLAB图中。
例如,这个:
figure
set(gcf, 'color', 'white'), axis off %# Remove axes and set white background
my_text = '$$f_n={x \over \sqrt{2}}$$';
text('units', 'inch', 'position', [-0.5 3.5], 'fontsize', 14, 'color', 'k', ...
'interpreter', 'latex', 'string', my_text);
应该给你这个:
我还建议您阅读this article。这应该让你去。
答案 1 :(得分:1)
第一种是使用text命令:
figure;
text(.1,.9,'\itAe^\alpha^t')
set(gca,'visible','off');
以这种方式使用TeX / LaTeX是一个更完整的set of documentation。