gpt4 book ai didi

在命令窗口或独立绘图中通过 LaTeX 进行 MATLAB 和数学方程式?

转载 作者:行者123 更新时间:2023-12-02 17:47:55 25 4
gpt4 key购买 nike

我想做的是在一个完整且单独的图中输出数学公式(通过 LaTeX),专门用于数学方程式,或者能够在命令窗口本身中显示数学方程式(再次通过 LaTeX)。

这在 MATLAB 中可行吗?

谢谢!

最佳答案

我不确定命令提示符,但您可以使用 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);

应该给你这个:

enter image description here

我还建议您阅读 this article .这应该让你继续。

关于在命令窗口或独立绘图中通过 LaTeX 进行 MATLAB 和数学方程式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12249639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com