gistlib
You can create an empty cell array using the empty function in MATLAB. Here's how:
main.memptyCellArray = {}; 21 chars2 lines
emptyCellArray = {};
This will create an empty cell array that you can then populate with data.
gistlibby LogSnag