本文整理汇总了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()