How to save a histogram generated with imhist() function as a png image?
6 views (last 30 days)
Show older comments
when I save the image using imwrite() function it does not saves the axis only few spikes are saved. the code is given below.
=>> imwrite(imhist(temp),'F:\Histogram\h1.png');
0 Comments
Answers (1)
the cyclist
on 30 May 2018
Edited: the cyclist
on 30 May 2018
2 Comments
the cyclist
on 31 May 2018
Edited: the cyclist
on 31 May 2018
for nf=1:6
figure
histogram(randn(100,1))
filename = sprintf('histogram_file_%d',nf);
print('-dpng',filename)
end
See Also
Categories
Find more on Histograms 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!