![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/404175/image.png)
how to plot multiple 3d on one graph ?
76 views (last 30 days)
Show older comments
Teerapong Poltue
on 5 Nov 2020
Commented: Richard Summers
on 15 Oct 2021
I've try hold on but that isn't work. It turns out to be 2d plot
interval = [-5:0.1:5];
x = -5:0.1:5;
y = -5:0.1:5;
[X,Y] = meshgrid(x,y);
z1 = acos((cos(interval)+cos((interval).')));
z2 = acos(-(cos(interval)+cos((interval).')));
figure(1);
plot3(X,Y,z2)
figure(2);
plot3(X,Y,z1)
0 Comments
Accepted Answer
Ameer Hamza
on 5 Nov 2020
Following code works fine
interval = [-5:0.1:5];
x = -5:0.1:5;
y = -5:0.1:5;
[X,Y] = meshgrid(x,y);
z1 = acos((cos(interval)+cos((interval).')));
z2 = acos(-(cos(interval)+cos((interval).')));
figure(1);
plot3(X,Y,z2)
hold on
plot3(X,Y,z1)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/404175/image.png)
3 Comments
More Answers (0)
See Also
Categories
Find more on Annotations 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!