필터 지우기
필터 지우기

I want to take time derivative of the function

조회 수: 1 (최근 30일)
Haseeb Hashim
Haseeb Hashim 2022년 3월 29일
편집: Walter Roberson 2022년 8월 15일
syms theta(t)
theta2 = 0:0.001:2*pi;
r_x = 11.6;
r_y = 4.3;
r2 = 3.5;
omega2 = 17; % Given in RPM
omega2 = omega2*2*pi/60; % In rad/s
link3_linear = sqrt((r_x - r2*cos(theta)).^2 + (r_y - r2*sin(theta).^2));
dr3 = diff(link3_linear,t,1);
Now I have this code but how can we get the numerical answer by substituting for theta dot which comes as a result of the derivative with time 3 we can use the subs function but what are we substituting for or what would be the theta dot interpretation in MATLAB
I hope you understand my question
I just want the velocity of link3_linear by taking it sderivative and then substituting the angular velocity theta dot in the resulting derivative

채택된 답변

Torsten
Torsten 2022년 3월 29일
편집: Torsten 2022년 3월 29일
link3_linear = sqrt((r_x - r2*cos(theta)).^2 + (r_y - r2*sin(theta).^2))
d_link3_linear_dt = diff(link3_linear,t)
d_theta_dt = diff(theta,t)
d_link3_linear_dt_subs_d_theta_dt = subs(d_link3_linear_dt,d_theta_dt,1)
  댓글 수: 1
Haseeb Hashim
Haseeb Hashim 2022년 3월 29일
So MATLAB stores theta_dot in form of diff(theta,t) as theta is a function of time
Understood. Wonderful @Torsten thanks man I was stuck here for a long time, Now I can complete my assignment on time thankss again man

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by