我试图在MATLAB中使用LaTex字符串作为轴标签,并且没有明显的原因得到一个数字

时间:2012-03-03 18:54:18

标签: matlab latex

我正在尝试使用LaTex字符串为y轴标签插入一个分数,我得到一个数字(标准字体和ylabel位置)以及我所期望的(分数I)我试图插入)。当我编辑代码时,这已经改变了,但是一旦我尝试调查它就停止了(当我输入时它是353.191,如果有帮助的话)。如果我不尝试在y轴上添加标签,或者在没有LaTex的情况下添加标签,则该数字不存在。没有错误消息。

有问题的代码:

ylabel(text('Interpreter','LaTex',...
    'string','$\frac{\tau_b(t)}{\phi \bar{U}}$',...
    'FontSize',20,'position',[-1.25,0.2]));

完整程序(上面的代码就在程序结束之前):

% --- MM3CAI Coursework 1 ---

clear all; clf('reset'); clc;

fig_num=0;

disp('Started program');
disp(' ');

% --- Task 1. About the water-brake only ---

disp('Started task 1');
disp(' ');

w_t=0.003;          % Volume of water in the brake at time t        [m^3]
thet_t=250;         % Angular velocity of brake at time t           [rads^-1]

percent=0.1;        % Percent added to values for small change      [%]
fraction=percent/100;

del_w=w_t*fraction;
del_t=thet_t*fraction;

w_del=w_t+del_w;
thet_del=thet_t+del_t;

clear percent fraction;

% --- Q1 ---

disp('Started question 1');
disp(' ');

tau  =150*w_t  *thet_t;
tau_w=150*w_del*thet_t;
tau_t=150*w_t  *thet_del;

tau_mat=[tau;...
     tau_w;...
     tau_t];

A=[w_t   thet_t   1;...
w_del thet_t   1;...
w_t   thet_del 1];

variables_mat=A\tau_mat;

phi=variables_mat(1,1);
psi=variables_mat(2,1);
eta=variables_mat(3,1);

disp(['Phi = ', num2str(phi)]);
disp(['Psi = ', num2str(psi)]);
disp(['Eta = ', num2str(eta)]);
disp(' ');

disp('Finished question 1');
disp('----------');

% --- Q2 ---

disp('Started question 2');
disp(' ');

beta=-eta/phi;

disp(['Beta = ', num2str(beta)]);
disp(' ');

disp('Finished question 2');
disp('----------');

% --- Q4 ---

disp('Started question 4');
disp(' ');

G=@(omega) phi./(1+(5i.*omega));

frequency=logspace(-3,3,700)';

G_mat=G(frequency);

phase_mat_rad=angle(G_mat);
phase_mat_deg=phase_mat_rad.*(180/pi);

magnitude_mat=abs(G_mat);
gain_mat=20.*log10(magnitude_mat);

fig_num=fig_num+1;
figure(fig_num);
subplot(2,1,1);
semilogx(frequency,gain_mat);
title('Bode Plot');
xlabel('Frequency [rads^-^1]');
ylabel('Gain [dBs]');
subplot(2,1,2);
semilogx(frequency,phase_mat_deg);
xlabel('Frequency [rads^-^1]');
ylabel('Phase Angle [degrees]');

disp('Finished question 4');
disp('----------');

% --- Q5 ---

disp('Started question 5');
disp(' ');

U_bar=1;
step=@(t) (phi*U_bar)*(1-exp(-t/5));

time=(0:0.01:8);

step_mat=step(time);
normalised=step_mat./(phi*U_bar);

fig_num=fig_num+1;
figure(fig_num);
plot(time,normalised);
title('Step Response');
xlabel('Time [s]');
ylabel(text('Interpreter','LaTex',...
        'string','$\frac{\tau_b(t)}{\phi \bar{U}}$',...
        'FontSize',20,'position',[-1.25,0.2]));

disp('Finished question 5');
disp('----------');

我真的对此感到困惑,因此更难找到任何东西。我所能找到的只是基本的MatLab有关使用LaTex的帮助(这是我将字符串混杂在一起的方式)以及有text()无法正常工作并产生错误的问题 - 没有产生预期输出的任何内容并且出现了其他东西。

1 个答案:

答案 0 :(得分:6)

TEXT函数返回文本对象的句柄,实际上是一个数字。这是您作为y-label获得的数字。您只需要将字符串作为第一个参数传递给YLABEL并指定Interpreter(和FontSize)属性:

ylabel('$\frac{\tau_b(t)}{\phi \bar{U}}$','Interpreter','LaTex','FontSize',20);

位置由ylabel自动确定。

ylabel语句中,实际创建了文本对象(这就是您没有收到错误的原因),但选择的位置使文本位于可见区域之外。 -1.25表示文本位于左侧轴大小的1.25处。

您也可以将文本对象作为轴标签使用,但是您必须通过更改轴尺寸来调整文本位置。

text('Interpreter','LaTex',...
    'string','$\frac{\tau_b(t)}{\phi \bar{U}}$',...
    'FontSize',20,'position',[-0.1,0.5]);

注意,Position属性不是xy,而是轴分数。