matlab code for histogram

1 回表示 (過去 30 日間)
simith
simith 2018 年 5 月 30 日
回答済み: simith 2018 年 5 月 30 日
i have these two data sets. A=[1;2;3;4;5;6;7;8;9;10] B=[0.7;0.8,0.4;0.1;0.5;0.6;0.9;0.3;0.82;0.54] how to draw the histogram for above data set?

採用された回答

Image Analyst
Image Analyst 2018 年 5 月 30 日
Try this:
A=[1;2;3;4;5;6;7;8;9;10]
B=[0.7;0.8;0.4;0.1;0.5;0.6;0.9;0.3;0.82;0.54]
subplot(1, 2, 1);
histogram(A);
grid on;
subplot(1, 2, 2);
histogram(B);
grid on;
See documentation and adapt options as desired.

その他の回答 (1 件)

simith
simith 2018 年 5 月 30 日
Thank You Image...It's worked

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by