Displaying 3 results from an estimated 3 matches for "readint32".
Did you mean:
readint
2000 Jun 29
1
Binary file functions in R
...e of us who aren't that comfortable with
>the external function interface.
>
>For example:
>
>fopen would take a filename and some information about the open mode
>(read and write would probably be enough modes) and would return a
>file handle.
>
>readint8, readint16, readint32, readint64 would read a specified count
>of integers into an integer vector.
>
>readfloat4, readfloat8 would read a specified count of floating point
>values into a vector of doubles.
>
>readchar would read a specified count of characters into a single
>component character vect...
2006 Nov 27
1
R.DLL mapping by P/Invoke
...readconsolecfg();
setup_Rmainloop();
R_ReplDLLinit();
} catch(Exception e)
{
throw;
}
}
private RWrapper() {}
static int UserBreak
{
get
{
return Marshal.ReadInt32(sg_rDll_R_UserBreakPtr);
}
set
{
Marshal.WriteInt32(sg_rDll_R_UserBreakPtr,value);
}
}
static public string RDllVersion { get { return sg_dllVersion; } }
static public string RHome { get { return sg_RHome; } }...
2007 Oct 17
0
Using R.dll in .NET IPC
...readconsolecfg();
setup_Rmainloop();
R_ReplDLLinit();
} catch(Exception e)
{
throw;
}
}
private RWrapper() {}
static int UserBreak
{
get
{
return Marshal.ReadInt32(sg_rDll_R_UserBreakPtr);
}
set
{
Marshal.WriteInt32(sg_rDll_R_UserBreakPtr,value);
}
}
static public string RDllVersion { get { return sg_dllVersion; } }
static public string RHome { get { return sg_RHome; } }...