search for: aperm_express

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

2015 Aug 25
0
Child thread libR.so
...ensional * intput/output look it up once here and save it off */ aperm_function = findFun(install("aperm"), R_GlobalEnv); if (aperm_function == NULL || aperm_function == R_NilValue || aperm_function == R_UnboundValue) { aperm_function = NULL; } else { aperm_expression = PROTECT(allocVector(LANGSXP, 2)); SETCAR(aperm_expression, aperm_function); } } ---------- SNIP ---------------- This now behaves appropriately from a child thread in my custom front end. thank you again Simon, Ryan > Ryan, > > if you read the piece you quoted from mor...
2015 Aug 20
2
Child thread libR.so
...ensional * intput/output look it up once here and save it off */ aperm_function = findFun(install("aperm"), R_GlobalEnv); if (aperm_function == NULL || aperm_function == R_NilValue || aperm_function == R_UnboundValue) { aperm_function = NULL; } else { aperm_expression = PROTECT(allocVector(LANGSXP, 2)); SETCAR(aperm_expression, aperm_function); } } ---------------------------------------- SNIP ------------------------------------------------------------------------------ but as I say I still get the error and it seems like the call to Rf_initEmb...
2015 Aug 24
0
Child thread libR.so
...it up once here and save it off > */ > aperm_function = findFun(install("aperm"), R_GlobalEnv); > if (aperm_function == NULL || aperm_function == R_NilValue || > aperm_function == R_UnboundValue) { > aperm_function = NULL; > } else { > aperm_expression = PROTECT(allocVector(LANGSXP, 2)); > > SETCAR(aperm_expression, aperm_function); > } > } > ---------------------------------------- SNIP > ------------------------------------------------------------------------------ > > but as I say I still get the error an...