How to get the new matrix after rotation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuestas (1)
Adam
el 5 de Ag. de 2014
get( h, 'XData' )
get( h, 'YData' )
should give the rotated data values
2 comentarios
Ver también
Categorías
Más información sobre 3-D Scene Control en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!