gistlib
To define an empty array in MATLAB, you can use the [] operator. Here's how to do it:
[]
main.memptyArray = []; 17 chars2 lines
emptyArray = [];
This will create an empty array named emptyArray. You can then use this array to store elements as needed.
emptyArray
gistlibby LogSnag