From: Kenshi h. <hi...@ku...> - 2010-09-13 15:09:36
|
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() ---------------------------- I thought that "axis([0,pi,0,1])" make the writing domain semi-circle, but complete circle was written as domain. Does anyone know how I should write? Many thanks, Kenshi -- View this message in context: http://old.nabble.com/contour-plot-in-semi-circle-domain-tp29699332p29699332.html Sent from the matplotlib - users mailing list archive at Nabble.com. |