Skip to content
Snippets Groups Projects
Commit 68aacdd9 authored by bjje's avatar bjje
Browse files

Updated structure of lecture plan and file names (needs to be double checked)

parent ab5be310
No related branches found
No related tags found
No related merge requests found
File added
...@@ -2,11 +2,12 @@ ...@@ -2,11 +2,12 @@
# #
## Option I ## Option I
# Standard python code will look like the 4 lines below # Standard python code will look like the 4 code lines below
# and this is the way all scripts are # and this is the way all scripts are
# displayed/implemented in this course # displayed/implemented in this course
# #
# To run it you need to press the run symbol or F5 or Ctrl+F5 # To run the whole file you need to press
# the run symbol, F5 or Ctrl+F5 (debug)
# #
a = 1 a = 1
print(a) print(a)
...@@ -41,4 +42,4 @@ print(b) ...@@ -41,4 +42,4 @@ print(b)
# If you want this behavior you simply add the #%% or #%%[markdown] to the provided # If you want this behavior you simply add the #%% or #%%[markdown] to the provided
# scripts in for you useful places. # scripts in for you useful places.
# #
# %%
...@@ -38,5 +38,5 @@ classNames = iris_mat["classNames"] ...@@ -38,5 +38,5 @@ classNames = iris_mat["classNames"]
# Loading the Iris data from the .mat-file was quite easy, because all the work # Loading the Iris data from the .mat-file was quite easy, because all the work
# of putting it into the correct format was already done. This is of course # of putting it into the correct format was already done. This is of course
# likely not the case for your own data, where you'll need to do something # likely not the case for your own data, where you'll need to do something
# similar to the two previous exercises. We will, however, sometimes in the # similar yourself. We will, however, sometimes in the
# course use .mat-files in the exercises. # course use .mat-files in the exercises.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment