mirror of
https://github.com/asimonson1125/Implementations-of-Probability-Theory.git
synced 2026-02-25 06:09:50 -06:00
starting markov things
This commit is contained in:
@@ -35,8 +35,7 @@ def csv2Table(inFile):
|
||||
reader = csv.reader(f)
|
||||
rows = list(reader)
|
||||
|
||||
out = "\\begin{table}[h!]\n\\centering\n"
|
||||
out += "\\begin{tabular}[t]{|" + " c | p{1.3cm} | c | c | p{6cm} |}\n"
|
||||
out = "\\begin{longtable}{|" + " c | p{1.3cm} | c | c | p{6cm} |}\n"
|
||||
out += "\\hline\n"
|
||||
|
||||
for row in rows:
|
||||
@@ -45,7 +44,7 @@ def csv2Table(inFile):
|
||||
out += " & ".join(row) + " \\\\\n"
|
||||
out += "\\hline\n"
|
||||
|
||||
out += "\\end{tabular}\n\\end{table}\n"
|
||||
out += "\\end{longtable}\n"
|
||||
return out
|
||||
|
||||
def findIn(arr, target):
|
||||
|
||||
Reference in New Issue
Block a user