I am wondering folks how can I loop over two different data cell arrays.
More precisely, The first
data1 = {'x','y','z', 'xyz','yxz'};
data2 = {'b','c','a'};
I want a for loop that performs the following operation
iterates on the first element of data2 while iterating over the entire elements of data1
Hope you guys can understand my question and looking forward to your amazing talent
Thank you