How to re-scale the Axises when exporting "Values" from binscatter ??

3 次查看(过去 30 天)
I am using the h= binscatter(x,y,N) with N=250 to plot my data (figure 1 below). After I created it I extract counts=h.Values to plot the contour(counts) - (figure 2 below).. Thus, I have a question. How to rescale my Axises in contour plot (figure 2) to have the same values as on Figure 1????
Many thanks
Figure 1:
Figure 2 ([M,h]=contourf(counts,5);):

采纳的回答

Matteo Pellegri
Matteo Pellegri 2021-2-27
I'm not sure I understand the question. Have you tried this?
xlim([x1 x2])
ylim([y1 y2])
  5 个评论
Matteo Pellegri
Matteo Pellegri 2021-2-27
I understand now.
You can directly change it using
set(gca,'xtick',xmin:.1:xmax)
Alternatively you can create NxN matrices using meshgrid with the values you need and then plot using contourf
[X,Y] = meshgrid(linspace(xmin,xmax,250),linspace(ymin,ymax,250))
figure()
h = binscatter(x,y,N)
figure()
d=contourf(X,Y,h.Values)
Sergii Snegir
Sergii Snegir 2021-2-28
编辑:Sergii Snegir 2021-3-1
Dear Matteo,
thanks for the hint with set(gca,'xtick',xmin:.1:xmax).
I tried to implement it directly but in appears in wrong place and not stretched to the full axis,see image below:

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by