From: Tina R.Matin on
Hi every body!
I made a diagram with Matlab but now I want to rotate it once 180' around Y axis and second 90' around center anticlockwise... any advise?
Best
Tina
From: Darren Rowland on
Your description isn't totally clear to me but you can try this.
If your original plot is produced by
plot(x,y)

then you might get the result you want with
plot(-y,-x)

Hth
Darren