Lines Matching refs:d
102 d = [[run['degree'], run['num_elem'], 1. * run['num_unknowns'] / num_nodes / vdim, variable
107 d = [[e[2], e[3]] for e in d if e[0] == sol_p] variable
109 d = [[nun, variable
110 min([e[1] for e in d if e[0] == nun]),
111 max([e[1] for e in d if e[0] == nun])]
112 for nun in set([e[0] for e in d])]
113 d = asarray(sorted(d)) variable
115 plot(d[:, 0], d[:, 2], 'o-', color=colors[i % cm_size],
117 if list(d[:, 1]) != list(d[:, 2]):
118 plot(d[:, 0], d[:, 1], 'o-', color=colors[i])
119 fill_between(d[:, 0], d[:, 1], d[:, 2],
126 d = [[run['degree'], run['num_elem'], 1. * run['num_unknowns'] / num_nodes / vdim, variable
131 d = [[e[2], e[3]] for e in d if e[0] == sol_p] variable
132 if len(d) == 0:
135 d = [[nun, variable
136 min([e[1] for e in d if e[0] == nun]),
137 max([e[1] for e in d if e[0] == nun])]
138 for nun in set([e[0] for e in d])]
139 d = asarray(sorted(d)) variable
140 plot(d[:, 0], d[:, 2], 's--', color=colors[i],
142 if list(d[:, 1]) != list(d[:, 2]):
143 plot(d[:, 0], d[:, 1], 's--', color=colors[i])