Suppose I have four column arrays "one," "two," "three," and "four." Each array contains 500 scalar values (500 rows x 1 column). How can I say the following:
If any one of these scalar values (in any array) are equal to zero then execute the following code, whatever it may be.
Do I need to create a new array containing the indices of the zero elements in "one" "two" "three" and "four"? How can I code this?