Color Surface Plot for specific areas

Is it possible to color a surface plot using my own thresshold values? So that I can say, the color needs to change when the plot hits a certain value?

Answers (1)

Yes, its possible. Use cdata property
[x,y,z] = peaks(20);
c = rand(20,20);
surf(x,y,z,'cdata',c)

2 Comments

Can you show/attach the data?
I still don't get where you want to change color. Can you show it on the picture?

Sign in to comment.

Asked:

Cb
on 4 Mar 2021

Commented:

on 4 Mar 2021

Community Treasure Hunt

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

Start Hunting!