How to fill a 1024 point array with two cycles of a cosine wave?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How to fill a 1024 point array with two cycles of a cosine wave?
0 Commenti
Risposta accettata
Luna
il 11 Feb 2019
Example:
xData = linspace(0,4*pi,1024);
yData = cos(xData);
figure;
plot(xData,yData);
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!