本文整理匯總了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()