Plotting a function of 3 variables ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I'm trying to visualize a function of 3 variables v = f(x,y,z). So I'm wondering is there any appropriate plotting function in Matlab? What I am thinking of is a 3-D lattice of markers with the colour of the marker indicating the function value, like a 3-D scatter plot with each point being a different coloured sphere with the colour indicating the function's magnitude at that point. The spheres would be small relative to the distance between adjacent spheres (the x,y,z coordinates to be plotted will be uniformly spaced) so that the figure could be rotated and viewed from all angles while still being able to see any patterns or trends through the entire lattice. Is there any command to achieve something like this ?
Thanks
0 comentarios
Respuestas (3)
Walter Roberson
el 25 de Abr. de 2012
spheresize = 10;
scatter3(x, y, z, spheresize, v)
0 comentarios
Eric
el 25 de Abr. de 2012
See the documentation for scatter3. http://www.mathworks.com/help/techdoc/ref/scatter3.html) The last input argument lets you pass color information for each point. I've successfully used the two-dimensional version of this function in the manner you describe.
Use either the icons on the figure window to zoom and rotate or use the zoom and rotate3d commanders from the command line.
Good luck,
Eric
0 comentarios
julie
el 2 de Mayo de 2013
I need to do the same kind of thing. How do you do to make the color parameter of scatter3 take the value of your function v or to associate this value to a RGB row vector?
2 comentarios
Walter Roberson
el 2 de Mayo de 2013
As I indicated above,
spheresize = 10;
scatter3(x, y, z, spheresize, v)
The 5th parameter, v, is the position for color. It may be a column vector the same length as x, or it may be an RGB array, v(K,:) corresponding to x(K), y(K), z(K)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!