octave - Reading variable length cell arrays into matrix -


i using octave 4.2 , using xlsread in loop import data several different rtds. importing using following code:

for i=rtdmin:rtdmax   filnum=num2str(i);   fid = strcat(pre, filnum, filtyp);   j = exist(fid);   if j == 2     [num{i}, txt{i}, raw{i}, lim{i}] = xlsread(fid);     time{i} = num{i}(:,2);     temp{i} = num{i}(:,3);   endif endfor 

the problem none of rtds have exact same number of readings (30,000 +-200), or stop , start @ exact same time, although readings overlap. because of variable size of data in each cell cannot pull out matrix in order process data. can suggest solution of how data matrix, or can suggest change existing code data read matrix begin with. thank in advance.


Comments

Popular posts from this blog

c++ - CPP, 'X' button listener -

shared memory - gstreamer shmsrc and shmsink with h264 data -

.net - Bulk insert via Dapper is slower than inserting rows one-by-one -