Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
JUNYONG SONG
JUNYONG SONG il 13 Apr 2017
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I want to drawing graph like picture that I uploaded.
could you help me ? please I don't know how to drawing like that.

Risposte (1)

Sanjana Ramakrishnan
Sanjana Ramakrishnan il 17 Apr 2017
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!