MATLAB: Set lower than 0.1 values to zero in tables that stored in a cell

cell arraysMATLAB

Dear all,
In a 1×3 cell containing three (28×6) tables; inside tables how I can set each value that lower than 0.1 to zero in a1 and a2 columns (names of columns are a1 and a2) of all tables?
Thank you all

Best Answer

In general, this is how you do it. Apply it to a table inside a cell should not be that difficult.
a=rand(3,5);
index=a<0.5;
a(index)=0