加权1D直方图看起来非常简单。如何在给定权重向量 w ?
的情况下实现2D加权直方图MATLAB:
x = randn(4,1); //some random x input
y = randn(4,1); //some random y input
w = [10, 20, 30, 40]; //weight to be assigned to corresponding data point in the generated histogram, i.e. the pixel intensity value
figure;
H = histogram2(x,y); //Matlab built-in 2D histogram
我应该如何在上面的代码片段中使用 w 来获得加权的二维直方图函数。
*首选MATLAB代码,但也可以接受Python。