3D x,y,z surface plot
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Muhammad Choudhury
 el 24 de Nov. de 2021
  
    
    
    
    
    Comentada: Muhammad Choudhury
 el 24 de Nov. de 2021
            I already have X,Y,Z arrays:
x =                       
    1.0000
    1.2500
    1.5000
    1.2500
    1.5000
    1.7500
y=
    1.0000
    1.0000
    1.0000
    1.5000
    1.5000
    1.5000
z =
    0.7583
    1.2413
    1.3555
    1.3022
    1.4160
    1.5195
How can I get a plot that looks similar to this? 

0 comentarios
Respuesta aceptada
  Yusuf Suer Erdem
      
 el 24 de Nov. de 2021
        Hi Muhammad, try these codes below please. Good luck.
X=[1.000, 1.250, 1.500, 1.250, 1.500, 1.750]';
Y=[1.000, 1.000, 1.000, 1.500, 1.500, 1.500]';
Z=[0.758, 1.241, 1.355, 1.302, 1.416, 1.519]';
Z = [X Y Z];
surf(Z); shading('interp');
xlabel('X'); ylabel('Y'); zlabel('f(X,Y)');
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!

