arrays - How to fix this "out of memory error " in MATLAB? -


two of lines in code, commented below, throw "out of memory error". can corrected?

[x1,x2]=textread(tline,'%u,%u'); x1 , x2 contains integer value    %  disp(x1);  %     disp(x2);    previousmovie =  nextmovie; nextmovie     =  x1; allmovies     =  [allmovies x1];  /////////      error in line if(iline ==1)             if((nextmovie ~= previousmovie) & (previousmovie==0))         currentgenres = x2;          end end    if(nextmovie == previousmovie)     currentgenres = [currentgenres x2];/////////       in line error end            


Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -