Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
JUNYONG SONG
JUNYONG SONG el 13 de Abr. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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.

Respuestas (1)

Sanjana Ramakrishnan
Sanjana Ramakrishnan el 17 de Abr. de 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)

Etiquetas

Community Treasure Hunt

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

Start Hunting!