MATLAB: Creating an empty column vector

vector

Hi all,
I would like to create an empty column vector so as when I extract this vector to excel to see empty cells.

Best Answer

cell(10,1)
Note that you can write to excel into a specific range, i.e. you don't need to add empty cell arrays to skip columns/rows.