Why does my function return a single value instead of an array? I need it to return an array so I can plot it.
Show older comments
%A.3
Dn2 = @(n) (1-exp(-j*pi*n/2))/(j*pi*n);
n5 = [-5:5];
Y=Dn2(n5)
Answers (1)
Use ./ instead of / for array operation. [Note that there is division by 0 in your equation]
Dn2 = @(n) (1-exp(-1j*pi*n/2))./(j*pi*n);
n5 = [-5:5];
Y=Dn2(n5)
1 Comment
Greylyn Gao
on 17 Nov 2021
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!