How can I create a signal that contains the sum of two cosine waves of equal amplitude at 40 Hz and 45 Hz

조회 수: 25 (최근 30일)
The sampling rate must be 1 kHz

채택된 답변

Stephan
Stephan 2018년 11월 5일
편집: Stephan 2018년 11월 5일
fs = 1000; % Sampling rate 1000 Hz = 1 kHz
t = 0:1/fs:1; % take a sample of 2 seconds with 1 kHz sampling rate
f1 = 40; % Frequency 1
f2 = 45; % Frequency 2
omega_1 = 2*pi*f1; % omega 1
omega_2 = 2*pi*f2; % omega 2
result = cos(omega_1.*t) + cos(omega_2.*t); % calculate sum
plot(t,result) % plot results
  댓글 수: 4

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Array and Matrix Mathematics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by