MATLAB: Combining Logical Indexes

indexlogical?MATLAB

I have two logical Indexes that I need to reference with my large Matrix of data before performingons. One Index (MyDates) is 1×693 and the other (MyTickers) is 589×1. I need to combine the two Indexes into one large 589×693 logical index. How do I go about oing that?
Thanks, Brian

Best Answer

What is the operation, and, or, plus, minus?
bsxfun(@and,MyTickers,MyDates)