How to plot planes parallel to the coordinate axes given by
    8 views (last 30 days)
  
       Show older comments
    
How to plot planes parallel to the coordinate axes given by 

y = linspace(0,5) ; 
x = linspace(0,5) ;
[Y,X] = meshgrid(y,x) ; 
Z = 3 ; 
surf(X,Y,Z)
hold on
x = linspace(0,5) ; 
z = linspace(0,5) ;
[Z,X] = meshgrid(z,x) ; 
Y = 2 ; 
surf(X,Y,Z)
hold on
y = linspace(0,5) ; 
z = linspace(0,5) ;
[Z,Y] = meshgrid(z,y) ; 
X = 1 ; 
surf(X,Y,Z)
0 Comments
Accepted Answer
  Voss
      
      
 on 10 Jul 2022
        
      Edited: Voss
      
      
 on 10 Jul 2022
  
      y = linspace(0,5) ; 
x = linspace(0,5) ;
[Y,X] = meshgrid(y,x) ; 
% Z = 3 ; 
Z = 3*ones(size(X)); 
surf(X,Y,Z)
hold on
x = linspace(0,5) ; 
z = linspace(0,5) ;
[Z,X] = meshgrid(z,x) ; 
% Y = 2 ; 
Y = 2*ones(size(X)); 
surf(X,Y,Z)
hold on
y = linspace(0,5) ; 
z = linspace(0,5) ;
[Z,Y] = meshgrid(z,y) ; 
% X = 1 ;
X = ones(size(Y)); 
surf(X,Y,Z)
2 Comments
More Answers (0)
See Also
Categories
				Find more on Line Plots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

