How to use mod() to create a mask of where A contains an even number? C =
How to replace values with a mask. Using your mask, C, assign the even values in var1 into the corresponding values of var2. D =
Use 'and' and 'or' to find a mask of where both A and C were true. E =
Thank You.