필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Please help me to drawing graph(sin graph + width )

조회 수: 2 (최근 30일)
JUNYONG SONG
JUNYONG SONG 2017년 4월 13일
마감: MATLAB Answer Bot 2021년 8월 20일
I want to drawing graph like picture that I uploaded.
could you help me ? please I don't know how to drawing like that.

답변 (1개)

Sanjana Ramakrishnan
Sanjana Ramakrishnan 2017년 4월 17일
You can plot a sin wave using 'sin' function. Refer the below link and example:
https://www.mathworks.com/help/matlab/ref/sin.html
Example:
t = [0:0.01:2*pi]
a = sin(t);
plot(t,a)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!