Hey ,
I am getting this error message
"cannot run program octave: error=24, too many open files" when i am running octave. The script i am calling is not doing anything fancy but reading a text file
doing some simple matrix operations and writing the output.
arg_list = argv();
incidenceMat = dlmread(arg_list{1});
googleMat = getgooglemat(incidenceMat,0);
pageRank = getpagerank(googleMat,100);
dlmwrite(arg_list{2} , pageRank)
Any idea what could be the problem ?
Regards,
Yamen