what mean ,hist word in matlab ?
2 ビュー (過去 30 日間)
古いコメントを表示
what mean ,hist word in matlab ?
0 件のコメント
採用された回答
Wayne King
2013 年 3 月 2 日
編集済み: Wayne King
2013 年 3 月 2 日
It a frequency histogram
X = randn(1000,1);
hist(X)
It "bins" the input data and returns the number of data values that value in each bin.
You can get the actual counts and bin center with the optional output arguments:
[counts,centers] = hist(X);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!