Two surface with different value of x axis
2 views (last 30 days)
Show older comments
Mohammad Nasiri
on 22 Apr 2022
Commented: Mohammad Nasiri
on 22 Apr 2022
I have two table of data.
Considert Y axis as 1 to 10 for both
X axis value from 10 to 3000 with 10 step (10:10:3000) for one and 10 to 4200 with 50 step (10:50:4000) for the others.
and Z is the output of multiple functions for each.
Is it possible to plot these two surface (surf) in one diagram?
0 Comments
Accepted Answer
Torsten
on 22 Apr 2022
surf(X1,Y,Z1)
hold on
surf(X2,Y,Z2)
Or what do you mean ?
More Answers (0)
See Also
Categories
Find more on Lighting, Transparency, and Shading 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!