search for: transposevector

Displaying 3 results from an estimated 3 matches for "transposevector".

2015 Aug 25
0
Child thread libR.so
...r**) init_argv); /* Disable stack limit checking since it is incompatible being loaded on a child thread */ R_CStackLimit = (uintptr_t)-1; R_Interactive = TRUE; /* Rf_initialize_R set this based on isatty */ setup_Rmainloop(); /* end of Rf_initEmbeddedR */ /* * transposeVector above uses the R builtin function aperm instead of * looking it up every time we need deal with transposing a multidimensional * intput/output look it up once here and save it off */ aperm_function = findFun(install("aperm"), R_GlobalEnv); if (aperm_function == NULL...
2015 Aug 20
2
Child thread libR.so
...----------------------- void init_r() { SEXP aperm_function; const char *init_argv[] = {"MyFront", "--vanilla", "--slave"}; Rf_initEmbeddedR(sizeof (init_argv) / sizeof (init_argv[0]), (char**) init_argv); R_CStackLimit = (uintptr_t)-1; /* * transposeVector above uses the R builtin function aperm instead of * looking it up every time we need deal with transposing a multidimensional * intput/output look it up once here and save it off */ aperm_function = findFun(install("aperm"), R_GlobalEnv); if (aperm_function == NULL...
2015 Aug 24
0
Child thread libR.so
...SEXP aperm_function; > > const char *init_argv[] = {"MyFront", "--vanilla", "--slave"}; > Rf_initEmbeddedR(sizeof (init_argv) / sizeof (init_argv[0]), > (char**) init_argv); > > R_CStackLimit = (uintptr_t)-1; > > /* > * transposeVector above uses the R builtin function aperm instead of > * looking it up every time we need deal with transposing a multidimensional > * intput/output look it up once here and save it off > */ > aperm_function = findFun(install("aperm"), R_GlobalEnv); > i...