Skip to content

Commit 3f7592d

Browse files
committed
update
1 parent 48c6076 commit 3f7592d

File tree

5 files changed

+319
-4
lines changed

5 files changed

+319
-4
lines changed

doc/LectureNotes/.ipynb_checkpoints/exercisesweek34-checkpoint.ipynb

Lines changed: 315 additions & 0 deletions
Large diffs are not rendered by default.

doc/LectureNotes/.ipynb_checkpoints/exercisesweek35-checkpoint.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
"source": [
324324
"n = 100\n",
325325
"x = np.linspace(-3, 3, n)\n",
326-
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(0, 0.1)"
326+
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(n)"
327327
]
328328
},
329329
{

doc/LectureNotes/.ipynb_checkpoints/exercisesweek36-checkpoint.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"source": [
173173
"n = 100\n",
174174
"x = np.linspace(-3, 3, n)\n",
175-
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(0, 0.1)"
175+
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(n)"
176176
]
177177
},
178178
{

doc/LectureNotes/exercisesweek35.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
"source": [
324324
"n = 100\n",
325325
"x = np.linspace(-3, 3, n)\n",
326-
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(0, 1.0)"
326+
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(n)"
327327
]
328328
},
329329
{

doc/LectureNotes/exercisesweek36.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"source": [
173173
"n = 100\n",
174174
"x = np.linspace(-3, 3, n)\n",
175-
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(0, 0.1)"
175+
"y = np.exp(-x**2) + 1.5 * np.exp(-(x-2)**2) + np.random.normal(n)"
176176
]
177177
},
178178
{

0 commit comments

Comments
 (0)