Lines Matching refs:xs
20 xs = []
33 xs.append(x)
40 return xs, gs, ys, es
42 def plot(xs, gs, ys, es):
43 if len(xs) < 2:
46 a = min(xs)
47 b = max(xs)
52 ax0.plot(xs,es,'r.')
54 ax1.plot(xs,ys,'r.',label='want')
55 ax1.plot(xs,gs,'b.',label='got')
60 xs, gs, ys, es = parse(sys.stdin)
61 plot(xs, gs, ys, es)