文件名称:二维直方图计算:快速计算二元数据的二维直方图-matlab开发
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-19 13:04:54
matlab
函数 histmat = hist2(x, y, xedges, yedges) 提取包含落在由 xedges 和 yedges 定义的网格的每个 bin 中的 [x , y] 对的事件数的二维直方图数据。 边是具有单调非递减值的向量。 代码经过优化,内部没有循环,在大数据集的情况下很有用。 例子事件 = 1000000; x1 = sqrt(0.05)*randn(events,1)-0.5; x2 = sqrt(0.05)* randn(events,1)+0.5; y1 = sqrt(0.05)*randn(events,1)+0.5; y2 = sqrt(0.05)*randn(events,1)-0.5; x = [x1; x2]; y = [y1;y2]; 对于线性间隔的边: xedges = linspace(-1,1,64); yedges = linspace(-1,
【文件预览】:
hist2.zip