search for: numofcolumn

Displaying 1 result from an estimated 1 matches for "numofcolumn".

Did you mean: numofcolumns
2005 Apr 16
1
SET_LENGTH
...d a delimited file. I'm a little new to the R api. In the program, I do something like this... /*****************************/ SEXP retval; PROTECT(retval = allocMatrix(STRSXP,1,names.dim)); int r_eltctr = 0; while(!myfile.eof()) { SET_LENGTH(retval,r_eltctr+num_of_fields); for(int i = 0;numofcolumns; ++i) { INTEGER(retval)[r_eltctr++] = 1;/*some value...*/ } ++r_eltctr; } UNPROTECT(1); /***************************************/ There is a segmentation fault when SET_LENGTH() is called several iterations into the program. It seems like it should not be a memory issue, unless a...