How to get the new matrix after rotation
Show older comments
If I am rotating a matrix by using:
[C,h] = contour(x,y,Conv_Norm);
rotate(get(h,'children'),[0 0 1],angle)
Is there a way I get the new rotated matrix values?
Answers (1)
Adam
on 5 Aug 2014
get( h, 'XData' )
get( h, 'YData' )
should give the rotated data values
Categories
Find more on Computational Geometry 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!