about code suggestion

Hi.This question that about rotation of Radial Based Function Interpolation Plot.I have run my program but axis rotation is necessary.What is your rotation code suggestion as easy?

[cid:c8724f77-9099-4573-92c8-e6e44fad5054]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20151207/98620eec/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pastedImage.png
Type: image/png
Size: 60982 bytes
Desc: pastedImage.png
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20151207/98620eec/attachment-0001.png>

Without seeing your code, I am assuming that you are using pcolor() or
pcolormesh(). If so, I would transpose the image data and switch the x and
y coordinate array arguments. For example, if your code looked something
like this:

plt.pcolormesh(x, y, data)

Just do:

plt.pcolormesh(y, x, data.T)

You would also need to modify the calls to scatter() that you are using to
plot those circles so that you switch the x and y arguments around.

I hope that helps.
Ben Root

Hi.This question that about rotation of Radial Based Function
Interpolation * Plot*.I have run my program but axis rotation is
necessary.What is your rotation code suggestion as easy?

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users at python.org
Matplotlib-users Info Page

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20151214/ab7667cc/attachment-0001.html&gt;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pastedImage.png
Type: image/png
Size: 60982 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20151214/ab7667cc/attachment-0001.png&gt;

ยทยทยท

On Mon, Dec 7, 2015 at 11:52 AM, Ekrem _ <ekrem1982 at hotmail.com> wrote: