How to plot line spectrum in matlab ?
14 views (last 30 days)
Show older comments
I would like to plot a spectrum (output of FFT) with a form like the provided image. How do I do it? Because the common plot in matlab is connecting of all point.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/194144/image.png)
0 Comments
Answers (2)
Star Strider
on 9 Nov 2018
Example —
f = 0:0.1:3.5; % Create Frequency Vector
h = exp(-f) + 0.5*rand(size(f)); % Create Amplitude Vector
figure
stem(f, h, 'Marker','none')
0 Comments
See Also
Categories
Find more on Fourier Analysis and Filtering 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!