Hist3 zero enteries

조회 수: 1 (최근 30일)
Ankita Gupta
Ankita Gupta 2022년 11월 19일
댓글: Steven Lord 2022년 11월 20일
I have the following code which gives me
x1=load('file1.txt');
x2=load('file2.txt');
bin_x = linspace(0,1,100);
bin_y = linspace(0,1,100);
X=[x1 x2];
[cnt,c]=hist3(X,{bin_x,bin_y})
cnt=cnt/sum(cnt,'all');
[x,y] = meshgrid(bin_x,bin_y);
f=figure
sc=surfc(x,y,cnt)
which gives me
when I view this using axis([0 1 0 1]) in 2D plane it gives me
I want the change the color of blue area in surf plot to some lighter color and in 2D plot, I want to remove the blue colored area, how do I do that.

답변 (1개)

Steven Lord
Steven Lord 2022년 11월 19일
Instead of using hist3 I recommend you use histogram2 instead. It has some properties, including Normalization and ShowEmptyBins, that you may find useful.
  댓글 수: 2
Ankita Gupta
Ankita Gupta 2022년 11월 20일
I used histogram2 it shows the follwoing error.
>> histogram2(X)
Error using histogram2>parseinput (line 230)
X and Y inputs must be numeric or logical and they must have the same size.
Error in histogram2 (line 144)
[opts,args,vectorinput] = parseinput(args, firstaxesinput);
Steven Lord
Steven Lord 2022년 11월 20일
hist3 and histogram2 are not called with exactly the same input arguments. You will need to modify your code to replace calls to hist3 with calls to histogram2 and then modify the input argument list in your histogram2 call. See the histogram2 documentation page for the allowed calling sequences and examples of how to call it.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by