×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Colour of plot...not based on z coordinate, but on other variable.

Colour of plot...not based on z coordinate, but on other variable.

Colour of plot...not based on z coordinate, but on other variable.

(OP)


Hi

I plotted an hyperbolic parabolid surface in Matlab. The colour of the plot is based on the z-coordinate of the surface. But, now I want to visualise the result of an other function (like: f= x+y+2) on the the surface. So the colour of the surface should be based on the result of function f and not on the z-coordinate. Can somebody explain clearly how to do this? Is it a 4dplot?...and/or how this exactly works?

Thanks in advance!

k = 1

x = linspace(-3,3);

y = linspace(-3,3);

[x,y] = meshgrid(x,y);

z = k*x.*y;

mesh(x,y,z)
Replies continue below

Recommended for you

RE: Colour of plot...not based on z coordinate, but on other variable.

I was curious about this so I looked into it & it's pretty straightforward, actually. You can add a fourth parameter to the SURF command to color the surface. In the case you've presented:

CODE --> MATLAB

k = 1
x = linspace(-3,3,50);
y = linspace(-3,3,50);
[x,y] = meshgrid(x,y);
f= x+y+2;
z = k*x.*y;
surf(x,y,z,f);
shading flat; 

Hope that helps. Here's a picture:

Link to picture.
Good luck!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close