how to draw a 3-D frequency Distribution map with 3 differentlabels?
1 次查看(过去 30 天)
显示 更早的评论
here is the data(which is attached below):the first column is the first feature,the second column is the second feature,the third column is the labels include 3 labels. hist3 function can only draw 1 labels.like this:
</matlabcentral/answers/uploaded_files/53400/1.jpg> but there are 3 labels. how can I draw them together,like stacked?and with different colors? thanks!
0 个评论
采纳的回答
Ahmet Cecen
2016-6-1
This is a very lazy solution, and there will be some tearing in graphics so you have to move the view around to get it right:
[w,n] = hist3(data);
hist3([data1;data2;data3],n,'FaceColor',[1 0 0]); hold on;
hist3([data1;data2],n,'FaceColor',[0 1 0]);
hist3(data1,n,'FaceColor',[0 0 1]);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!