How to create a scatter plot with three variables?

7 次查看(过去 30 天)
Hello,
I have a set of data (pressure, temperature, count)->(x,y,z). Is there a way to plot this in 2D with the z plotted in colors based on the values of the counts?
Thanks!

采纳的回答

Bjorn Gustavsson
Bjorn Gustavsson 2020-5-5
you should use scatter, something like this:
psz = 23;
scatter(x,y,psz,z,'filled')
That should give you something to start with. Have a look at the help and documentation for more details.
HTH
  2 个评论
Bjorn Gustavsson
Bjorn Gustavsson 2020-5-5
One more thing to keep in mind is the matlab command lookfor - when you cannot find/remember the name of a function you can always search with lookfor:
lookfor scatter

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by