How to plot the integer value and complex number for n number of value
Show older comments
for k=1:K
plot(k,r(k))
end
k has n number of value r(k) has a n complex number
1 Comment
Torsten
on 2 Feb 2018
k=1:K;
plot(k,abs(r));
Answers (0)
Categories
Find more on WLAN Toolbox 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!