-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpython.tex
More file actions
113 lines (81 loc) · 2.11 KB
/
python.tex
File metadata and controls
113 lines (81 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
\documentclass[twoside,11pt,ShortChapTitles]{BYUTextbook}
\usepackage{soul}
\renewcommand{\vec}[1]{\ensuremath{\mathbf{#1}}}
\usepackage{siunitx}
\sisetup{round-mode = figures,
round-precision = 3, scientific-notation=true}
\begin{document}
\frontmatter
\thispagestyle{empty}
\begin{adjustwidth}{}{-1.5in}
\centering
{\huge INTRODUCTION TO}
\vskip0.1truein
{\huge SCIENTIFIC COMPUTING}
\vskip0.1truein
{\huge IN PYTHON}
%\vskip1truein
\includegraphics[scale=.80]{matlabcover}
\vskip1truein
Lance J.\ Nelson and Matthew R. Zachreson
\vskip.4truein
Department of Physics
\end{adjustwidth}
\cleardoublepage
\thispagestyle{empty}
\begin{adjustwidth}{}{-1.5in}
\centering
\vspace*{1in}
\large
{\huge INTRODUCTION TO}
\vskip0.1truein
{\huge SCIENTIFIC COMPUTING}
\vskip0.1truein
{\huge IN PYTHON}
\vskip.4truein
Lance J.\ Nelson and Matthew R. Zachreson
\bigskip
Department of Physics
\bigskip
Brigham Young University--Idaho
\vfill
{\footnotesize $\copyright$ 2017 Lance J.\ Nelson and Matthew R. Zachreson
Brigham Young University--Idaho}
\vskip.5truein
{\footnotesize \emph{Last Revised: \today}}
\normalsize
\end{adjustwidth}
\cleardoublepage
\input{chapters/acknowledgements}
\input{chapters/preface}
\cleardoublepage \phantomsection
\addcontentsline{toc}{chapter}{Table of Contents}
\tableofcontents
\mainmatter
\part{Preliminaries}
\input{chapters/gettingStarted}
\input{chapters/debugging}
\part{The Basics}
\input{chapters/variablesDataTypes}
\input{chapters/functions}
\input{chapters/calculating}
\input{chapters/loopslogic}
\input{chapters/plotting}
\input{chapters/fileio}
\part{Advanced Topics}
\input{chapters/advancedplotting}
\input{chapters/statistics}
\input{chapters/linearalgebra}
\input{chapters/fitting}
\input{chapters/interpolation}
\input{chapters/calculus}
\input{chapters/advancedpython}
% Commented out by Michael Ware. Code below inserts index
\begin{theindex}
\input{python.idx}
\end{theindex}
\cleardoublepage \phantomsection
\addcontentsline{toc}{chapter}{Index}
\printindex
\end{document}
%*********************************************************