Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个排序的列表,我想知道每个 bin 中有多少个值?我使用 linspace(floor(fist_element_list), ceil(last_element_list), num_bins) 制作了垃圾箱 在 Matlab 中是否有内置函数或简单的方法?我能想到的就是手动完成。我想要一个像 excel 中的频率函数。
历史很近。但是,它实际上是将项目分组到箱中,而不是计算值。通常它会绘图,但您可以获取数据:
[freqs, vals] = hist(list, num_bins)
另请参见MATLAB:频率分布。