How to fill a 1024 point array with two cycles of a cosine wave?

5 次查看(过去 30 天)
How to fill a 1024 point array with two cycles of a cosine wave?

采纳的回答

Luna
Luna 2019-2-11
You can use linspace.
Example:
xData = linspace(0,4*pi,1024);
yData = cos(xData);
figure;
plot(xData,yData);

更多回答(1 个)

Guillaume
Guillaume 2019-2-11
Knowing that the cycle length of a cosine wave is , what is the length of two cycles?
Once you know that, use linspace to generate a vector of 1024 points between 0 and that length. Pass that vector to cos and you're done.

类别

Help CenterFile Exchange 中查找有关 Language Fundamentals 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by