Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using PyPlot | |
| using PyCall | |
| @pyimport matplotlib2tikz as mpl | |
| mpl.save("figures/fig.tex") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def find_largest(L): | |
| N = len(L) | |
| minL = [ [None] * N for j in range(N)] | |
| sumL = [ [None] * N for j in range(N)] | |
| def helper(i): | |
| if i==0: | |
| minL[0][0] = L[0] | |
| else: | |
| for j in range(i): |
NewerOlder