MATLAB: How to delete the row from cell array

cell arraysMATLAB

I have a cell arraywhich has 10*6 matrix in it. How can I delete a row from the matrix? thanks in advance.

Best Answer

Is this what you want:
>> A(1:2)={rand(10,6)}
A =
[10x6 double] [10x6 double]
>> row=2; A{1}(2,:)=[] %delete 1 row from 1 cell
A =
[9x6 double] [10x6 double]