How to highlight a row in a surface plot?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Shubham Mohan Tatpalliwar
 el 4 de Feb. de 2019
  
    
    
    
    
    Comentada: Indira
 el 21 de Oct. de 2020
            Hello all,
I have done some calculation and in the result i have created a surface plot.
Actually the plot is divided in two separate matrix and i am jus adding them together to form a whole surface plot
How could i show the line of separation. I want to highlight this line in Surface plot and i know the row index.
Please suggest me any function the expected picture can be seen in the attachments. 
Thank you
4 comentarios
  madhan ravi
      
      
 el 4 de Feb. de 2019
				If you could share the data it would be easy to analyse what’s going on.
Respuesta aceptada
  KSSV
      
      
 el 4 de Feb. de 2019
        [X,Y,Z] = peaks(100) ;
% seperate here (pick some row randomly)
idx = randsample(100,1) ;
figure
hold on
surf(X,Y,Z) ;
plot3(X(idx,:),Y(idx,:),Z(idx,:),'r','LineWidth',3)
1 comentario
  Indira
 el 21 de Oct. de 2020
				Hi KSSV,
If I have X and Y as vectors and Z a matrix of mxn?
Thanks for your support.
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!



