Array Operations
Operations may combine two arrays if they have exactly the same length.
The operations + and � work as expected.
For element-by-element multiplication, division, and exponentiation, use .* , ./ , and .^ .
(Explanation: The usual operators * , / , and ^ perform matrix [Linear algebra] operations between arrays. We will not cover that in CS100.)