标签: matlab scatter
我正在x,y和density之间绘制地图。 x和y是距离。除了scatterplot之外还有其他任何方法可以绘制它。我希望密度以彩条显示。我一直在做以下事情:
x
y
density
scatterplot
scatter(x(1:end-1), y(1:end-1), 5, g); colorbar('eastoutside'); caxis([12 max(g)]);
答案 0 :(得分:1)
使用surf(x,y,z),其中x和y是你的距离,z是密度。
surf(x,y,z)