필터 지우기
필터 지우기

When I use delayseq() I the signal contains only zeros

조회 수: 8 (최근 30일)
Aidan Marrinan
Aidan Marrinan 2023년 9월 29일
댓글: Aidan Marrinan 2023년 9월 29일
%This is what I have so far:
fs = 8000; % sample frequency
f0 = 400;
T = 1/fs; %period
d = 2; %duration in secods
t = 0:T:d; % becomes a 1x16001 double
xn = sin(2*pi*f0*tc);
%d = 2 sec with 16001 samples. therfore a 1 second delay is delaying start by ~8000 samples
n_delay = 8000;
delayedsignal_xn = delayseq(xn,n_delay);
%However delayedsignal_xn just becomes 1x16001 double with only zeros even though its only been shifted by half its length.
%Any ideas what is up?

채택된 답변

Walter Roberson
Walter Roberson 2023년 9월 29일

scalar delay is applied individually to each column. Your row of signals is treated as many independent signals delayed by 8000 samples each.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by