search for: bdxresult

Displaying 2 results from an estimated 2 matches for "bdxresult".

Did you mean: addresult
2006 Nov 27
1
R.DLL mapping by P/Invoke
...Marshal.ReadIntPtr(lSexpVect, 24); Rf_protect(lSexp); IntPtr lresult = R_tryEval(lSexp, GetCurrentEnv(), out evalError); Rf_unprotect(1); if (evalError != 0) throw new Exception("R Eval Error : " + evalError.ToString()); IntPtr bdxResult; object result; evalError = SEXP2BDX(lresult, out bdxResult); evalError = BDX2Variant(bdxResult, out result); bdx_free(bdxResult); return result; } static public object GetSymbol(string name) {...
2007 Oct 17
0
Using R.dll in .NET IPC
...Marshal.ReadIntPtr(lSexpVect, 24); Rf_protect(lSexp); IntPtr lresult = R_tryEval(lSexp, GetCurrentEnv(), out evalError); Rf_unprotect(1); if (evalError != 0) throw new Exception("R Eval Error : " + evalError.ToString()); IntPtr bdxResult; object result; evalError = SEXP2BDX(lresult, out bdxResult); evalError = BDX2Variant(bdxResult, out result); bdx_free(bdxResult); return result; } static public object GetSymbol(string name) {...