Clear Filters
Clear Filters

How can I turn vertical to horizontal?

3 views (last 30 days)
>>[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');

Accepted Answer

Ameer Hamza
Ameer Hamza on 19 May 2020
Edited: Ameer Hamza on 19 May 2020
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])

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!