"*[CEGM1000 MUDE](http://mude.citg.tudelft.nl/): Week 1.5. September 30, 2024.*\n",
"*[CEGM1000 MUDE](http://mude.citg.tudelft.nl/): Week 1.6. October 7, 2024.*\n",
"\n",
"_This notebook was prepared by Berend Bouvy and used in an in-class demonstration on Monday._"
]
...
...
@@ -31,41 +31,26 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"import os"
"from func import *\n",
"import timeit"
]
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"# Objective: Create a variable of each type in Python\n",
"int_var = #TODO: create an integer variable\n",
"float_var = #TODO: create a float variable\n",
"bool_var = #TODO: create a boolean variable\n",
"str_var = #TODO: create a string variable\n",
"list_var = #TODO: create a list variable\n",
"tuple_var = #TODO: create a tuple variable\n",
"dict_var = #TODO: create a dictionary variable\n",
"\n",
"\n",
"# Asserts\n",
"assert type(int_var) == int, f'Expected int but got {type(int_var)}' # This will throw an error if the type is incorrect\n",
"assert type(float_var) == float, f'Expected float but got {type(float_var)}' # This will throw an error if the type is incorrect\n",
"assert type(bool_var) == bool, f'Expected bool but got {type(bool_var)}' # This will throw an error if the type is incorrect\n",
"assert type(str_var) == str, f'Expected str but got {type(str_var)}' # This will throw an error if the type is incorrect\n",
"assert type(list_var) == list, f'Expected list but got {type(list_var)}' # This will throw an error if the type is incorrect\n",
"assert type(tuple_var) == tuple, f'Expected tuple but got {type(tuple_var)}' # This will throw an error if the type is incorrect\n",
"assert type(dict_var) == dict, f'Expected dict but got {type(dict_var)}' # This will throw an error if the type is incorrect\n",
"\n",
"\n"
"# import data \n",
"data = np.loadtxt('data.txt')\n",
"x = data[:,0]\n",
"y = data[:,1]\n"
]
},
{
...
...
@@ -74,124 +59,38 @@
"metadata": {},
"outputs": [],
"source": [
"# relative path vs absolute path\n",
"# relative path: relative to the current working directory\n",
"# absolute path: full path from the root directory\n",
"\n",
"# Create a variable that contains the current working directory using the os module\n",
"cwd = #TODO: get the current working directory\n",
"print(cwd)\n",
"\n",
"# Get all the files in the current working directory\n",
"files = #TODO: get all the files in the current working directory\n",
"print(files)\n",
"\n",
"# find path to data in data folder\n",
"data_dir = #TODO: find the path to the data folder\n",
"print(data_dir)\n",
"\n",
"# read the data using absolute path and relative path\n",
"data_abs = #TODO: read the data using absolute path\n",
"data_rel = #TODO: read the data using relative path\n",
"\n",
"# Asserts\n",
"assert data_abs == data_rel, 'Data read using absolute path and relative path are not the same' # This will throw an error if the data is not the same\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$$ H_n = \\sum_{k=1}^{n} \\frac{1}{k} $$"
"A = #TODO: create the matrix A\n",
"x_hat, y_hat = #TODO: solve the system of equations\n",
"print(f\"x_hat = {x_hat}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def harmonic_series(n):\n",
" \"\"\"\n",
" This function calculates the harmonic series of n\n",
" \"\"\"\n",
" result = #TODO: calculate the harmonic series of n\n",
" return result\n",
"\n",
"# Plotting\n",
"n = 100\n",
"x = #TODO: create a list of n values from 1 to n\n",
"y = #TODO: calculate the harmonic series of x, using list comprehension\n",
"\n",
"#TODO: plot x and y, with labels and title\n",
"\n",
"# asserts\n",
"assert harmonic_series(1) == 1, f'Expected 1 but got {harmonic_series(1)}'\n",
"assert harmonic_series(2) == 1.5, f'Expected 1.5 but got {harmonic_series(2)}'\n",
"assert harmonic_series(3) == 1.8333333333333333, f'Expected 1.8333333333333333 but got {harmonic_series(3)}'\n",
"\n",
"# save x, y data\n",
"data = #TODO: create a 2D array with x and y using np.column_stack()\n",
"assert fib_sequence(0) == [], f'Expected [] but got {fib_sequence(0)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(1) == [0], f'Expected [0] but got {fib_sequence(1)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(2) == [0, 1], f'Expected [0, 1] but got {fib_sequence(2)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(3) == [0, 1, 1], f'Expected [0, 1, 1] but got {fib_sequence(3)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(4) == [0, 1, 1, 2], f'Expected [0, 1, 1, 2] but got {fib_sequence(4)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(5) == [0, 1, 1, 2, 3], f'Expected [0, 1, 1, 2, 3] but got {fib_sequence(5)}' # This will throw an error if the result is incorrect\n"
"*[CEGM1000 MUDE](http://mude.citg.tudelft.nl/): Week 1.5. September 30, 2024.*\n",
"*[CEGM1000 MUDE](http://mude.citg.tudelft.nl/): Week 1.6. October 7, 2024.*\n",
"\n",
"_This notebook was prepared by Berend Bouvy and used in an in-class demonstration on Monday._"
]
...
...
@@ -31,41 +31,26 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"import os"
"from func import *\n",
"import timeit"
]
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"# Objective: Create a variable of each type in Python\n",
"int_var = #TODO: create an integer variable\n",
"float_var = #TODO: create a float variable\n",
"bool_var = #TODO: create a boolean variable\n",
"str_var = #TODO: create a string variable\n",
"list_var = #TODO: create a list variable\n",
"tuple_var = #TODO: create a tuple variable\n",
"dict_var = #TODO: create a dictionary variable\n",
"\n",
"\n",
"# Asserts\n",
"assert type(int_var) == int, f'Expected int but got {type(int_var)}' # This will throw an error if the type is incorrect\n",
"assert type(float_var) == float, f'Expected float but got {type(float_var)}' # This will throw an error if the type is incorrect\n",
"assert type(bool_var) == bool, f'Expected bool but got {type(bool_var)}' # This will throw an error if the type is incorrect\n",
"assert type(str_var) == str, f'Expected str but got {type(str_var)}' # This will throw an error if the type is incorrect\n",
"assert type(list_var) == list, f'Expected list but got {type(list_var)}' # This will throw an error if the type is incorrect\n",
"assert type(tuple_var) == tuple, f'Expected tuple but got {type(tuple_var)}' # This will throw an error if the type is incorrect\n",
"assert type(dict_var) == dict, f'Expected dict but got {type(dict_var)}' # This will throw an error if the type is incorrect\n",
"\n",
"\n"
"# import data \n",
"data = np.loadtxt('data.txt')\n",
"x = data[:,0]\n",
"y = data[:,1]\n"
]
},
{
...
...
@@ -74,124 +59,38 @@
"metadata": {},
"outputs": [],
"source": [
"# relative path vs absolute path\n",
"# relative path: relative to the current working directory\n",
"# absolute path: full path from the root directory\n",
"\n",
"# Create a variable that contains the current working directory using the os module\n",
"cwd = #TODO: get the current working directory\n",
"print(cwd)\n",
"\n",
"# Get all the files in the current working directory\n",
"files = #TODO: get all the files in the current working directory\n",
"print(files)\n",
"\n",
"# find path to data in data folder\n",
"data_dir = #TODO: find the path to the data folder\n",
"print(data_dir)\n",
"\n",
"# read the data using absolute path and relative path\n",
"data_abs = #TODO: read the data using absolute path\n",
"data_rel = #TODO: read the data using relative path\n",
"\n",
"# Asserts\n",
"assert data_abs == data_rel, 'Data read using absolute path and relative path are not the same' # This will throw an error if the data is not the same\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$$ H_n = \\sum_{k=1}^{n} \\frac{1}{k} $$"
"A = #TODO: create the matrix A\n",
"x_hat, y_hat = #TODO: solve the system of equations\n",
"print(f\"x_hat = {x_hat}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def harmonic_series(n):\n",
" \"\"\"\n",
" This function calculates the harmonic series of n\n",
" \"\"\"\n",
" result = #TODO: calculate the harmonic series of n\n",
" return result\n",
"\n",
"# Plotting\n",
"n = 100\n",
"x = #TODO: create a list of n values from 1 to n\n",
"y = #TODO: calculate the harmonic series of x, using list comprehension\n",
"\n",
"#TODO: plot x and y, with labels and title\n",
"\n",
"# asserts\n",
"assert harmonic_series(1) == 1, f'Expected 1 but got {harmonic_series(1)}'\n",
"assert harmonic_series(2) == 1.5, f'Expected 1.5 but got {harmonic_series(2)}'\n",
"assert harmonic_series(3) == 1.8333333333333333, f'Expected 1.8333333333333333 but got {harmonic_series(3)}'\n",
"\n",
"# save x, y data\n",
"data = #TODO: create a 2D array with x and y using np.column_stack()\n",
"assert fib_sequence(0) == [], f'Expected [] but got {fib_sequence(0)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(1) == [0], f'Expected [0] but got {fib_sequence(1)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(2) == [0, 1], f'Expected [0, 1] but got {fib_sequence(2)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(3) == [0, 1, 1], f'Expected [0, 1, 1] but got {fib_sequence(3)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(4) == [0, 1, 1, 2], f'Expected [0, 1, 1, 2] but got {fib_sequence(4)}' # This will throw an error if the result is incorrect\n",
"assert fib_sequence(5) == [0, 1, 1, 2, 3], f'Expected [0, 1, 1, 2, 3] but got {fib_sequence(5)}' # This will throw an error if the result is incorrect\n"