Filter löschen
Filter löschen

how can we plot this sine wave

3 Ansichten (letzte 30 Tage)
sesha sai
sesha sai am 20 Apr. 2019
Kommentiert: sesha sai am 20 Apr. 2019
Untitledkj.jpgit was source

Akzeptierte Antwort

Geoff Hayes
Geoff Hayes am 20 Apr. 2019
sesha - the only difference between this and the usual sine curve is that it is "inverted". Try doing
x = -pi:0.01:pi;
y = -1 * sin(x);
plot(x,y);
and see how the -1 scalar gives you what you are looking for.

Weitere Antworten (0)

Kategorien

Mehr zu Simulink finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by