當前位置: 首頁>>代碼示例>>Python>>正文


Python Plot.plot_polar方法代碼示例

本文整理匯總了Python中plot.Plot.plot_polar方法的典型用法代碼示例。如果您正苦於以下問題:Python Plot.plot_polar方法的具體用法?Python Plot.plot_polar怎麽用?Python Plot.plot_polar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在plot.Plot的用法示例。


在下文中一共展示了Plot.plot_polar方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: getX

# 需要導入模塊: from plot import Plot [as 別名]
# 或者: from plot.Plot import plot_polar [as 別名]
			x_values = [ getX(t) for t in range(int(t_min/t_size),int(t_max/t_size)) ]
			y_values = [ getY(t) for t in range(int(t_min/t_size),int(t_max/t_size)) ]
			x_max = max(x_max, max(x_values))
			x_min = min(x_min, min(x_values))
			y_max = max(y_max, max(y_values))
			y_min = min(y_min, min(y_values))
		x_max = int(x_max + 1) + 1
		x_min = int(x_min - 1) - 1
		y_max = int(y_max + 1) + 1
		y_min = int(y_min - 1) - 1
		
	plot = Plot(x_min, x_max, x_size, y_min, y_max, y_size, t_min, t_max, t_size)
		
	#Plot axes
	if plot_axes: plot.plot_axes

	#Fix descrepancies betwen functions and colors	
	if len(functions) < len(colors):
		colors = colors[:len(functions)]
	
	if len(functions) > len(colors):
		colors += [default] * (len(functions)-len(colors))
	
	#Plot functions
	for (function, color) in zip(functions,colors):
		if polar:
			plot.plot_polar(function, color)
		else:
			plot.plot_function(function, color)
	plot.print_plot()	
開發者ID:Wheatwizard,項目名稱:ASCIIplotter,代碼行數:32,代碼來源:plotter.py


注:本文中的plot.Plot.plot_polar方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。