How to plot a 3d graph with projection of 3d axis values on to the 2d surface with vertical lines
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Vinay Killamsetty
 il 4 Giu 2020
  
    
    
    
    
    Commentato: Vinay Killamsetty
 il 5 Giu 2020
            Hi guys,
Can any one help me out in plotting a 3d graph with projection of 3d axis values on to the 2d surface with vertical lines.

Example image is attached.
Let me know If there is any simple solution for this
1 Commento
Risposta accettata
  KSSV
      
      
 il 4 Giu 2020
        
      Modificato: KSSV
      
      
 il 4 Giu 2020
  
      N = 100 ;
x = rand(N,1) ; y = rand(N,1) ; z = rand(N,1) ;
% pick some points from above to draw vertical lines
idx = randperm(N,10) ; 
x1 = x(idx) ; y1 = y(idx) ; z1 = z(idx) ; 
x2 = x(idx) ; y2 = y(idx) ; z2 = 0*z(idx) ; 
% draw vertical lines 
plot3(x,y,z,'ob')
hold on
plot3([x1 x2]',[y1 y2]',[z1 z2]','r')
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Creating, Deleting, and Querying Graphics Objects in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


