Home | History | Annotate | Download | only in btt

Lines Matching refs:idx

131 		for idx in range(1, len(ys)):
132 if (xs[idx] - _xs[0]) > x_range:
137 _xs = [xs[idx]]
138 _ys = [ys[idx]]
140 _xs.append(xs[idx])
141 _ys.append(ys[idx])
285 def color(idx, style):
292 color = colors[idx % len(colors)]
294 style = l_styles[(idx / len(l_styles)) % len(l_styles)]
296 style = m_styles[(idx / len(m_styles)) % len(m_styles)]
325 idx = 0
340 ax.plot(dat['x'], dat['y'], color(idx, 'marker'),
345 ax.plot(dat['ax'], dat['ay'], color(idx, 'line'),
349 idx += 1