how to plot discrete time periodic impluse train

3 ビュー (過去 30 日間)
Cander Shelter
Cander Shelter 2014 年 4 月 23 日
回答済み: Daksh 2023 年 2 月 2 日
how to prove this using matlab
x[n]*∑δ[n-rN]=∑x[n-rN]

回答 (1 件)

Daksh
Daksh 2023 年 2 月 2 日
I understand that you intend to generate a discrete time periodic time impulse train using MATLAB.
Here is an example of periodic impulse train with each impulse having a unit amplitude and 1 sample in width with a sampling frequency fs and 1 second in length:
f=10; %frequency of the impulse in Hz
fs=f*10; % sample frequency is 10 times higher
t=0:1/fs:1; % time vector
y=zeros(size(t));
y(1:fs/f:end)=1;
plot(t,y);
You can use this technique for your utility, hope it helps!

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by