gpt4 book ai didi

MATLAB : frequency distribution

转载 作者:太空宇宙 更新时间:2023-11-03 20:13:30 25 4
gpt4 key购买 nike

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

感谢任何帮助!

最佳答案

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

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

关于MATLAB : frequency distribution,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2597743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com