필터 지우기
필터 지우기

How to i plot curve graph for equation with condition?

조회 수: 1 (최근 30일)
Artoria Pendragon
Artoria Pendragon 2021년 1월 22일
댓글: Artoria Pendragon 2021년 1월 22일
i want to plot this equation into graph.. but i only got a straight line..
a=3;
l=0.15;
m=0.5;
D=0.4;
wn=sqrt(9.81/l);
t = 0:0.05:(a*pi/wn);
x0=(D/2)*(1-cos(wn/a)*t);
plot(t,x0)
attached with me is graph i want to visualize...

답변 (1개)

langrg
langrg 2021년 1월 22일
A parenthesis is missing in your formula (look your print), there is an closing parenthesis after "t", but there is no opening parenthesis associated.
I've tried this, that seems to work:
a=3;
l=0.15;
m=0.5;
D=0.4;
wn=sqrt(9.81/l);
t = 0:0.05:(a*pi/wn);
x0=(D/2)*(1-cos((wn/a)*t));
plot(t,x0);

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by