Re: Sequentially cell arrays



In article <fg9ip5$6i6$1@xxxxxxxxxxxxxxxxxx>,
math <john.doe.nospam@xxxxxxxxxxxxx> wrote:
Can one create a Sequentially cell arrays with different
lengths as a loop say, ort_ord0, ord_ord1,..... ort_ordm.

Yes you can, but it would be a major abuse of the purpose of cell
arrays. Instead, create 2D cell arrays, or create a cell array
of cell arrays

For example,

for K=0:20
ort_ord{K+1} = {K:20};
end
--
"Any sufficiently advanced bug is indistinguishable from a feature."
-- Rich Kulawiec
.