MATLAB: Multiplications inside a cell array

cell multiplcaitonMATLAB

Capture.PNG
Hi everyone,
The above 4×12 is a cell array. Each cell contains numbers. What I want to do next is matrix multiplication between all elements of row 2 with row 4. So, (1,2)*(4,2). This will give a 33by33 matrix. Next, I want to store it in a new variable. But since this is a cell structure I am not able to do it and need help.
How can I concatenate it? Or should i convert the cell array to something else to make my life easier?
Thank you for your help.

Best Answer

use cell brackets to access contents of the cell array.
so if c is your 4x12 cell array, then c{2,1} would retun the array inside instead of the cell.