필터 지우기
필터 지우기

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

조회 수: 5 (최근 30일)
Kennard Ng
Kennard Ng 2019년 2월 11일
댓글: Kennard Ng 2019년 2월 11일
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