how do i plot this?

조회 수: 1 (최근 30일)
Ajinkya Shelke
Ajinkya Shelke 2019년 11월 16일
편집: KALYAN ACHARJYA 2019년 11월 16일
Hii I want to draw a graph of a equation which has t as a unknown. This t lies between 0 to 18. The iteration between 0 to 18 is 0.01679? How can I plot a graph for this equation?
  댓글 수: 2
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 11월 16일
Where is equation?
Ajinkya Shelke
Ajinkya Shelke 2019년 11월 16일
v= - 0.056139*cos(t*w1) - 3.3986*cos(t*w2) - 0.41655*cos(t*w3) - 1.1272*cos(t*w4) - 0.0015669*cos(t*w5)
w1 w2 w3 w4 w5 are known

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

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 11월 16일
편집: KALYAN ACHARJYA 2019년 11월 16일
w1=? % Defined all data
w2=?
w3= ?
w4=?
w5=?
t=0:0.01:18;
v=- 0.056139*cos(t*w1)-3.3986*cos(t*w2)-0.41655*cos(t*w3)-1.1272*cos(t*w4)-0.0015669*cos(t*w5);
plot(t,v);

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by