Clear Filters
Clear Filters

2D scatter plot with Z-value in color

239 views (last 30 days)
Hi all,
It’s a basic question but I struggle to find the answer on the Internet...
I have a matrix with x,y and z colum, representing the c-coordinate, the y-coordinate and depth (z).
I’d like to plot (x,y) but that those points show a colorscale depending on the depth value (just the point colors I don’t want an interpolation).
Can somebody help me please?
  1 Comment
Caoimhe Madine
Caoimhe Madine on 31 Mar 2020
Would anyone be able to tell me how to do this but then interpolate the colours?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 30 Jul 2013
pointsize = 10;
scatter(x, y, pointsize, z);
  10 Comments
Mateusz Surma
Mateusz Surma on 17 Jan 2020
Not sure if you still need the color bar:
cb = colorbar();

Sign in to comment.

More Answers (0)

Categories

Find more on Data Exploration in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!