MATLAB: How to turn vertical to horizontal

3d plots

>>[X,Y,~]=sphere(21);
>>s=sin(0:2*pi/21:2*pi);
>>Z=repmat(s',1,22);
>>figure(12);
>>subplot(1,2,1);
>>surf(X,Y,Z);
>>alpha(0.5);
>>xlabel('x');ylabel('y');zlabel('z');

Best Answer

Something like this
[X,Y,~]=sphere(21);
s=sin(0:2*pi/21:2*pi);
Z=repmat(s',1,22);
figure(12);
subplot(1,2,1);
surf(X,Y,Z);
alpha(0.5);
xlabel('x');ylabel('y');zlabel('z');
pbaspect([1 1 1])
subplot(1,2,2);
surf(Z,Y,X);
alpha(0.5);
xlabel('x');ylabel('y');zlabel('z');
pbaspect([1 1 1])