How to Create the following discrete signal (Y[n]) in MATLAB?

8 次查看(过去 30 天)
x[n]= {-1,0,1,2,3,4,4,4,4,4}
Y[n] = x(n+2) -x(n-3)

回答(1 个)

Jon
Jon 2019-9-9
编辑:Jon 2019-9-9
You could do something like this
x = [-1 0 1 2 3 4 4 4 4 4]
n = 1:length(x)
y = NaN(1,n(end)) % preallocate providing NaN (Not a Number)for possibly unassigned values
idx = 4:n(end)-2; % valid range of indices
y(idx) = x(n(idx)+2) - x(n(idx)-3)
Note you have to take into account that x(n-3) is not defined until n =4 and x(n+2) is not defined after n=8
You could also pad the beginning and end with zeros and then only use the portion that you are interested in

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by