
How to place a marker on a 3D surface plot
    40 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Jared Salloum
 el 16 de Abr. de 2015
  
    
    
    
    
    Comentada: Jared Salloum
 el 17 de Abr. de 2015
            I have a 3D surface plot for a function, and I need to place a marker on this plot at the maximum and minimum values within my range/domain. I have no idea how to do it and I really struggle to find what I am looking for in matlab help
0 comentarios
Respuesta aceptada
  Mike Garrity
    
 el 16 de Abr. de 2015
        Consider the following example:
[x,y,z] = peaks;
surf(x,y,z)
hold on
[~,i] = max(z(:));
h = scatter3(x(i),y(i),z(i),'filled');
h.SizeData = 150;
[~,i] = min(z(:));
h = scatter3(x(i),y(i),z(i),'filled');
h.SizeData = 150;
hold off

Does that make sense?
The 2nd arg of the min/max commands tells you the index of the element that is the min or max. You can use that index to get the X, Y, and Z coordinate for the surface.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Surface and Mesh 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!