- To plot a set of coordinates connected by line segments, specify X, Y, and Z as vectors of the same length.
- To plot multiple sets of coordinates on the same set of axes, specify at least one of X, Y, or Z as a matrix and the others as vectors.
Realize a 3d line plot
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    EldaEbrithil
 il 20 Mag 2021
  
    
    
    
    
    Commentato: EldaEbrithil
 il 20 Mag 2021
            Hi all
i need to realize a 3d plot for displaying 3 connected quantities.
for i=1:length(i_ed)   
    for j=1:length(x)
    if K1(i,j)>0
   psl(i,j)=(70*(W_end_t(i)/Sr(i))*K1(i,j)*K2(i)*K3*acg(i))*1000;%N/m^2 RES22 (61)
    end
    end
end
plot3(L_end,x,psl)
xlabel('L')
ylabel('x')
zlabel('Psl')
hold on
where L_end has length(i_ed) elements. For better understanding the problem, x/L_end varies between very small values to 1. My goal it is to graph in the same 3d plot many curves as L_end length. 
Thank you for the help!
0 Commenti
Risposta accettata
  Cris LaPierre
    
      
 il 20 Mag 2021
        You must be getting an error message. What does it say (all the red text)?
Check that your inputs are what plot3 expects.
In your case, it appears X and Y are vectors. Are they the same length?
Z appears to be a matrix. Do the number of rows match the lengths of X and Y?
5 Commenti
  Cris LaPierre
    
      
 il 20 Mag 2021
				
      Modificato: Cris LaPierre
    
      
 il 20 Mag 2021
  
			Try to plot it. What happens? How does that compare to what you want?
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Graphics Performance 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!





