Created using Colaboratory

This commit is contained in:
udlbook
2023-09-29 12:51:12 +01:00
parent 8c658ac321
commit 80497e298d

View File

@@ -67,7 +67,7 @@
"source": [ "source": [
"# Define a linear function with just one input, x\n", "# Define a linear function with just one input, x\n",
"def linear_function_1D(x,beta,omega):\n", "def linear_function_1D(x,beta,omega):\n",
" # TODO -- replace the code lin below with formula for 1D linear equation\n", " # TODO -- replace the code line below with formula for 1D linear equation\n",
" y = x\n", " y = x\n",
"\n", "\n",
" return y" " return y"