Position figures on a subplot

3 次查看(过去 30 天)
Hi guys.
For my project i need to position 2 histograms next to a hist3 (to see the projection of x-axis and y-axis view from the top of the hist3). I have tried to move the histograms locations but till now i have been unsuccessfully. I have attached an image for you guys visualize my intentions on a better way. If the histograms shared their axis it would be really nice. For now, my code is:
subplot(2,2,4)
HR=histogram(Raciof_{k},500)
xlim([-1 1])
set(gca,'view',[90 -90])
HEsub=subplot(2,2,1)
HE=histogram(gca,E_{k},300)
xlim([0 2500])
subplot(2,2,3)
Hf=hist3([E_{k} Raciof_{k}],'edges',{xhe xhf});
%surf(Hf)
shading flat
set(get(gca,'child'),'FaceColor','interp','CDataMode','auto');
xlabel('Energia');ylabel('Racio');
I'll really appreciate your help.

采纳的回答

Cris LaPierre
Cris LaPierre 2020-1-31
I'm not sure you want to be using hist3. I think you may want to use histogram2.
For what you are asking, take a look at scatterhistorgram. With some tweaks to the default format, that might be sufficient for what you want to visualize. If you want to see some additional options, check out this video (jump to about 1:25).
  1 个评论
David Martins
David Martins 2020-2-5
Thank you. Using scatterhistogram i won't have exacly what i was looking for but it's a very good approach.
Again, thank you very much.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by