MATLAB: How can i pass the one cell of array to any function as argument.

Image Processing Toolboxmat2cellMATLAB

I divided my image into image block using mat2cell() now i need to pass only one cell of array to further divide it in smaller parts.

Best Answer

Suppose your cell array is C, and you want to pass the array that is at C(P,Q). Then what you would pass is C{P,Q} -- notice the curly brackets.