フィルターのクリア

Can we remove a bar from histogram which drawn using 'hist' function?

2 ビュー (過去 30 日間)
Jaanu
Jaanu 2012 年 11 月 20 日
Hi, I have a data and i tried to calculate mean and standard deviation for that data values. where lots of zeros are there and i don't need to include that zeros for my data range. my data range is in Matrix.
I need to calculate mean and standard deviation only for data except zero values. Please help on this problem.
  3 件のコメント
Image Analyst
Image Analyst 2012 年 11 月 20 日
I think he has a huge bar for the "zero" bin and he wants to suppress that bar because it makes all the other bars so short. He can either set the "counts" value to zero for that bin, or just avoid seeing any zeros in the first place when he calculates the histogram, like you suggested.
José-Luis
José-Luis 2012 年 11 月 20 日
Comprehension dawned upon me. Thanks.

サインインしてコメントする。

回答 (1 件)

José-Luis
José-Luis 2012 年 11 月 20 日
idx = your_data ~=0;
You can now calculate the mean and standard deviation:
your_mean = mean(data(idx));
your_std = mean(data(idx));
  3 件のコメント
José-Luis
José-Luis 2012 年 11 月 20 日
It would appear so
x=rand(100000,1) > 0.5;
tic
mean(x(x~=0));
toc
tic
sum(x)/(length(x)-sum(x == 0));
toc
Elapsed time is 0.002031 seconds.
Elapsed time is 0.000810 seconds.
Daniel Shub
Daniel Shub 2012 年 11 月 20 日
I will have to think about how to do the same thing for std.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by