MATLAB: How to create an empty cell array of given dimensions

cell arraycell arraysMATLAB

I want to assign double matrices into a 3-D cell array. The dimensions of the cell array need to be equivalent to variable1 x variable2 x variable 3. How do I initially create the empty array?

Best Answer

a=cell(1,2,3)