Jae-Joon Lee wrote:
>
>
> Another option is to use mpl_toolkits.axisartist (distributed with mpl
> 1.0). However, learning curve of the axisartist is also steep. You may
> play around with the last figure in the example below.
>
> http://matplotlib.sourceforge.net/examples/axes_grid/demo_float
Hi!
I want to use polar plot and write contour in semi-circle domain.But I can't
do so.
Here is a part of my code.
-
from pylab import *
from scipy import *
fig=figure(figsize=(10,10))
ax=fig.add_axes([0.1,0.1,0.8,0.8],polar=True)
axis([0, pi, 0, 1])
show