Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 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!