•
|
Element-by-element multiplication, division, and power must be used—that is, the operators .*, ./, and .^. Replace expressions such as x/1.6 and x^2+0.3 with x./1.6 and x.^2+0.3, respectively.
|
•
|
The comparison x > 0.6 returns a matrix with ones (true) for the entries where the expression holds true and zeros (false) where it is false. The function evaluates the conditional statement if, and only if, all the entries are true (1).
|