Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 184607
MAX = 1600000 def t(L): curmax = 0 for i,v in enumerate(L.anlist(MAX)): if abs(v) >curmax:# or True: yield (i,abs(v)) curmax = abs(v) list_plot(list(t(LEchi)), plotjoined=True) +list_plot(list(t(L)), plotjoined=True) +plot(lambda n: sqrt(512*n), 0, MAX)