linking two axes with rotate3D
Show older comments
I have two plots in a figure:
ax1 = subplot(1,2,1); surf(peaks); ax2 = subplot(1,2,2); surf(membrane);
Now rotate3d can rotate the data. I want to use it on axes 1 and want callback to automatically rotate the membrane plot with the same angle
I tried to get it using the post callback function but I am not successful.
function mypostcallback(obj,evd) k=get(obj,'Children') newView = round(get(evd.Axes,'View')) axes(k(end)) % hopnig my second axes is the last one. view([newView])
Can someone help me?
Accepted Answer
More Answers (1)
Gaurav Rayal
on 25 Dec 2012
0 votes
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!