필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

code in signal processing

조회 수: 1 (최근 30일)
Filipe
Filipe 2011년 6월 24일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi people, I have a problem with a code.
A = [ 1 2 3 4]; % amplitude fr = [20 30 40 50]; % frequency
% Number of time samples, and number of samples per FFT Nt = 1024;
% Sampling freqency fs = 1000;
% Frequency spacing df = fs/Nt;
% Time t = [0:Nt-1]/fs;
I want to sum four signals as:
y = A*cos(2*pi*fr*t)
I want to use a FOR to do it, but the A and fr goes until 4 and the t goes until 1024.
I would like to do something
y = 1*cos(2*pi*20*t) + 2*cos(2*pi*30*t) + 3*cos(2*pi*40*t) + 4*cos(2*pi*50*t);
But I want to use a FOR.
How can I do it?
thanks

답변 (1개)

Walter Roberson
Walter Roberson 2011년 6월 24일
y = zeros(size(t));
for K = 1:length(A)
y = y + A(K) * cos(2*pi*fr(K)*t);
end

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by