How to fill a 1024 point array with two cycles of a cosine wave?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to fill a 1024 point array with two cycles of a cosine wave?
0 commentaires
Réponse acceptée
Luna
le 11 Fév 2019
Example:
xData = linspace(0,4*pi,1024);
yData = cos(xData);
figure;
plot(xData,yData);
0 commentaires
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!