MATLAB:频率分布

时间:2010-04-08 05:22:00

标签: matlab frequency-distribution

我在文本文件中有500个数值(范围从1到25000)的原始观察,我希望在MATLAB中进行频率分布。我确实尝试过直方图(hist),但我更喜欢频率分布曲线而不是块和条。

任何帮助表示赞赏!

2 个答案:

答案 0 :(得分:6)

如果将两个输出参数传递给HIST,则将同时获得x轴和y轴值。然后您可以根据需要绘制数据。例如,

[counts, bins] = hist(mydata);
plot(bins, counts); %# get a line plot of the histogram

答案 1 :(得分:3)