Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Please help me to drawing graph(sin graph + width )
조회 수: 1(최근 30일)
표시 이전 댓글

I want to drawing graph like picture that I uploaded.
could you help me ? please I don't know how to drawing like that.
댓글 수: 0
답변(1개)
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)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!