How to plot two different 3D graphics together?
显示 更早的评论
Hello , I have these two graphics, representung results of a simulation and want to plot those results together, however I'm only getting two separate graphics with the function I'm working on. Any thoughts?
This is my current work and results
hold on
N = 1000;
xv = linspace(min(x), max(x), N);
yv = linspace(min(y), max(y), N);
[Xm,Ym] = ndgrid(xv, yv);
Zm = griddata(x, y, F1, Xm, Ym);
figure
surf(Xm, Ym, Zm)
shading interp
grid on
N = 7.5;
xv = linspace(min(xr), max(xr), N);
yv = linspace(min(yr), max(yr), N);
[Xr,Yr] = ndgrid(xv, yv);
Zr = griddata(xr, yr, F1r, Xr, Yr);
figure
plot3(Xr, Yr, Zr,'o','Color','g')
grid on
hold off


Thank in Advance!!
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!