Skip to content

Commit 4d7d481

Browse files
committed
Updated for last lecture
1 parent 738ee1b commit 4d7d481

6 files changed

+26
-59
lines changed

EXERCISES/Exercises_Lecture_04.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@
12761276
"applying the logarithm in both sides\n",
12771277
"\n",
12781278
"$$\n",
1279-
"log(I)=At_1+B\\sqrt{t_2}+Ct_1^7t_2+D\n",
1279+
"log(I)=D+At_1+B\\sqrt{t_2}+Ct_1^7t_2\n",
12801280
"$$\n",
12811281
"\n",
12821282
"where, if we define the variables $x_1=t_1$, $x_2=\\sqrt{t_2}$ and $x_3=t_1^7t_2$, together with $y=log(I)$, we get\n",
@@ -1285,7 +1285,7 @@
12851285
"y=Ax_1+Bx_2+Cx_3+D\n",
12861286
"$$\n",
12871287
"\n",
1288-
"for which we know how to find $A,B,C,D$ from observed data! Note that for this, the matrix $X$ and vector $\\vec{y}$ would now be\n",
1288+
"for which we know how to find $D,A,B,C$ from observed data! Note that for this, the matrix $X$ and vector $\\vec{y}$ would now be\n",
12891289
"\n",
12901290
"$$\n",
12911291
"X=\\begin{pmatrix}\n",

EXERCISES/Exercises_Lecture_05.ipynb

+17-47
Large diffs are not rendered by default.

EXERCISES/Figures/from_excel.png

43.1 KB
Loading

EXERCISES/Figures/machine.png

36.5 KB
Loading

LECTURES/Lecture_04.ipynb

+6-9
Large diffs are not rendered by default.

LECTURES/Lecture_05.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"\n",
9292
"One of the first encoding standards for text was the so called ASCII standard based on the alphabet and symbols for English, which used 7 bits to encode about 127 different symbols or characters, among them the alphabetic characters, the numerical digits, symbols like `?` or `!` and some other special characters like `\\n` representing line breaks, or the EOF representing the end of a text file, among others.\n",
9393
"\n",
94-
"Today there are several standardized encodings, and each operative system (OS) has its preferred ones. ASCII was the main encoding used in Internet until December 2007, when it was surpassed by UTF-8 using 8 bits (and thus allowing double symbols to be coded).\n",
94+
"Today there are several standardized encodings, and each operative system (OS) has its preferred ones. ASCII was the main encoding used in Internet until December 2007, when it was surpassed by UTF-8 using until 4 blocks of 8 bits (and thus allowing to encode all the 1,112,064 symbols of the *unicode* standard, including most japanese, chinese, korean etc. characters).\n",
9595
"\n",
9696
"In the function `open()`, we can also add a thrid argument indicating the **encoding** for the characters we will deal with in this file. If we do not specify it, Python will just use the default encoding on the OS. But in general, we could specify any of the encodings listed in the following table of the official Python documentation:\n",
9797
"\n",

0 commit comments

Comments
 (0)