Вопрос новичка Матлаба здесь. Я уверен, что что-то здесь упускаю, но я не могу понять, почему мой участок возвращается пустым, может кто-то направить меня в правильном направлении. Я пытаюсь построить производную от 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)
Извините, если это плохой вопрос!