Hi all,
so im using hist3 to plot my data ,
i have two vectors, M and N, and edges for each of them;
edges_M=linspace(min(M), max(M),bins-1);
edges_N=linspace(min(N),max(N),bins-1);
edges={edges_M,edges_N};
[kxx, c]= hist3([M, N],'Edges',edges);
Normalization=kxx./max(kxx); (i do normalization per col, (per N vec))
pcolor(c{2},c{1},Normalization)
BUT
i get:
So what those lines? (white) Why does they appear in my plot? what they represent/ or not? how to deal with them?
I suspect it is a bug in hist3, but i really like matlab so better solve it and not run to other program XD,
Best,
Lital
2 Comments
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/664788-hist3-issue-white-lines-appear-in-the-plot#comment_1173463
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/664788-hist3-issue-white-lines-appear-in-the-plot#comment_1173463
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/664788-hist3-issue-white-lines-appear-in-the-plot#comment_1175038
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/664788-hist3-issue-white-lines-appear-in-the-plot#comment_1175038
Sign in to comment.