Displaying 2 results from an estimated 2 matches for "lsexpvect".
2006 Nov 27
1
R.DLL mapping by P/Invoke
...)
{
IntPtr unbound = Marshal.ReadIntPtr(sg_rDll_R_UnboundValue);
return Sexp == unbound;
}
static public void EvaluateNoReturn(string statement)
{
//- Parse the expresion
RParseStatus status;
IntPtr lSexpVect = R_ParseVector(Rf_mkString(statement), 1, out status);
if(status!=RParseStatus.PARSE_OK)
{
throw new Exception("R Parse Error : " + status.ToString());
}
Rf_protect(lSexpVect);
// lSexpVect is a vector of lSexp....
2007 Oct 17
0
Using R.dll in .NET IPC
...)
{
IntPtr unbound = Marshal.ReadIntPtr(sg_rDll_R_UnboundValue);
return Sexp == unbound;
}
static public void EvaluateNoReturn(string statement)
{
//- Parse the expresion
RParseStatus status;
IntPtr lSexpVect = R_ParseVector(Rf_mkString(statement), 1, out status);
if(status!=RParseStatus.PARSE_OK)
{
throw new Exception("R Parse Error : " + status.ToString());
}
Rf_protect(lSexpVect);
// lSexpVect is a vector of lSexp....