diff --git a/02-arrays.html b/02-arrays.html index c4cc020..3679dec 100644 --- a/02-arrays.html +++ b/02-arrays.html @@ -628,7 +628,7 @@

Checkerboard

-
+

We need to select every other element in both dimensions. To do that, we define the apropriate intervals with an increment of 2:

@@ -830,7 +830,7 @@

Master indexing

-
+

We need to tart with row 2, and subsequently select every third row:

diff --git a/03-loading_data.html b/03-loading_data.html index 0fae203..6abf526 100644 --- a/03-loading_data.html +++ b/03-loading_data.html @@ -576,7 +576,7 @@

All data points at once

-
+

We already know that the colon operator as an index returns all the elements, so patient_data(:) will return a vector with all @@ -874,7 +874,7 @@

Most inflamed patients

-
+

Using the power MATLAB has to compare arrays, we can check which patients have a max equal to the global_max. @@ -893,7 +893,7 @@

MATLAB