How to fill a 1024 point array with two cycles of a cosine wave?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Kennard Ng
am 11 Feb. 2019
Kommentiert: Kennard Ng
am 11 Feb. 2019
How to fill a 1024 point array with two cycles of a cosine wave?
0 Kommentare
Akzeptierte Antwort
Luna
am 11 Feb. 2019
Example:
xData = linspace(0,4*pi,1024);
yData = cos(xData);
figure;
plot(xData,yData);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!