plot 2d histogram in form of bin

1 Ansicht (letzte 30 Tage)
Mubashir
Mubashir am 20 Aug. 2017
Kommentiert: Mubashir am 23 Aug. 2017
I want to plot frequency of occurrence in form of chart like image given below. And i also want to define size of bins so range of data occurs in single bin.

Akzeptierte Antwort

Steven Lord
Steven Lord am 20 Aug. 2017
Use the histogram2 function with 'DisplayStyle', 'tile' as shown in the "Tiled Histogram View" on the documentation page for histogram2.
  1 Kommentar
Mubashir
Mubashir am 23 Aug. 2017
thanks. I am using Matlab 2015a. So I use given code, where a0 and a1 are given data at time 1:
a=hist3d(a0,a1,t,xedges,yedges);
C=a;C(C==0)=NaN; %colormap
surface(xedges,yedges,a,C);
colorbar;

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by