How can I count number of bars in a bar graph?
7 次查看(过去 30 天)
显示 更早的评论
figure;
imshow(Image);
pix=impixel(Image,X,Y);
hold on;
plot(X,Y,'LineWidth',2);
figure;
bar(pix,'r');
I have plotted this pix using a bar graph which is a continuous data set. Now how to count the no of bars in this graph and how I will calculate the distances from both the axes to each of the bar?and how to store all these values to an excel file. I am getting many graphs as my folder consisting of 50 images. How to do this?
0 个评论
回答(1 个)
Image Analyst
2018-6-24
Try adding this:
numBars = length(xticks)
since for every bar group you'll have a tick mark.
5 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!