How making discrete signal graphic image {xn} with data?
Show older comments
xn = {...,0,0,1,2,2,1,0,2,0,0,...}
1 Comment
Image Analyst
on 29 Apr 2022
Do you want to create a graph or an image? If an image, how do you plan on turning a 1-D list of numbers into a 2-D image? Why are your numbers in a cell array instead of a regular array?
Answers (1)
Maybe something like this
xn = [0 0 1 2 2 1 0 2 0 0];
stem(xn)
Categories
Find more on Image Arithmetic 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!