필터 지우기
필터 지우기

how can we plot this sine wave

조회 수: 3 (최근 30일)
sesha sai
sesha sai 2019년 4월 20일
댓글: sesha sai 2019년 4월 20일
Untitledkj.jpgit was source

채택된 답변

Geoff Hayes
Geoff Hayes 2019년 4월 20일
sesha - the only difference between this and the usual sine curve is that it is "inverted". Try doing
x = -pi:0.01:pi;
y = -1 * sin(x);
plot(x,y);
and see how the -1 scalar gives you what you are looking for.
  댓글 수: 1
sesha sai
sesha sai 2019년 4월 20일
thank you so much sir

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by