因此,根据我的问题和解决方案,我想实际开始使用 LaTeX,如图所示。但是,我遇到的一个问题是我似乎无法显示 Expectation 运算符。
根据我的研究,我知道期望运算符可以正常显示为:
/mathbb{E}
但是,当我尝试在 MATLAB 中使用它时,什么也没有打印出来。
clear all
figure(1); clf(1);
set(gcf, 'color', 'white'), axis off %# Remove axes and set white background
my_text = '$$ \mathbb{E} $$';
text('units', 'inch', 'position', [-0.5 3.5], 'fontsize', 14, 'color', 'k', ...
'interpreter', 'latex', 'string', my_text);
现在,我知道 \mathbb 是某种不同的“库”,但坦率地说,它对数学公式非常有用。如何在 MATLAB 中“包含”它?我迷失了这一点。