新手Matlab问题在这里。我确定我在这里遗漏了一些东西,但是我似乎无法弄清楚为什么我的fplot变空了,有人可以向我指出正确的方向。我正在尝试绘制2个函数的导数。
syms x(t)%creates symbolic function x of t
alpha=atan(8/x); % alpha relationship to x
beta=acos(sqrt(x^2+64)/40); % Beta relationship to x
phi=(pi-(alpha+beta)); % phi relationship to x
theta=(pi/2-phi); % theta relationship to x
Dtheta=diff(theta,1); % angular velocity of theta
pretty (Dtheta) % Prints angular velocity of theta in a more readable way
Dphi=diff(phi,1); % angular velocity of phi
pretty (Dphi) % Prints angular velocity of phi in a more readable way
fplot(Dtheta)
fplot(Dphi)
抱歉,这是一个me脚的问题!
答案 0 :(得分:3)
将第一行更改为:
syms x
因为您要定义x
而不是x(t)
的功能。