【记录】Matlab中根据(x,y)出现频次绘制彩图,colorbar为(x,y)出现频次

histogram2

https://ww2.mathworks.cn/help/matlab/ref/matlab.graphics.chart.primitive.histogram2.html

二元直方图是一种数值数据条形图,它将数据分组到二维 bin 中。创建 Histogram2 对象后,可以通过更改直方图的属性值修改它的各个方面。这对快速修改 bin 属性或更改显示特别有用。

histogram2(X,Y,'DisplayStyle','tile'); % 将直方图绘制为矩形块阵列
view(2);
colorbar;

 

  • histogram2(X,Y)
  • histogram2(X,Y,nbins)
  • histogram2(X,Y,Xedges,Yedges)
  • histogram2('XBinEdges',Xedges,'YBinEdges',Yedges,'BinCounts',counts)
  • histogram2(___,Name,Value)
  • histogram2(ax,___)
  • h = histogram2(___)

 

其他方法

https://blog.csdn.net/hjwang1/article/details/80777313

先在假设有两个向量x=[1 2 1 2 1 4 5

你可能感兴趣的:(MATLAB)