|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLPutByteString()
int MLPutByteString(MLINK link, const unsigned char *s, int n)
puts a string of n characters starting from location s to the MathLink connection specified by link.
DetailsDetails
- All characters in the string must be specified using character codes as obtained from ToCharacterCode in Mathematica.
- Newlines must thus be specified in terms of their raw character codes, rather than using \n.
- MLPutByteString() handles only characters with codes less than 256.
- It can handle both ordinary ASCII as well as ISO Latin-1 characters.
- MLPutByteString() returns 0 in the event of an error, and a nonzero value if the function succeeds.
- Use MLError() to retrieve the error code if MLPutByteString() fails.
- MLPutByteString() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* transfer a string from a source link to a destination link */
void f(MLINK sourcelink, MLINK destinationlink)
{
const unsigned char *string;
int length;
if(! MLGetByteString(sourcelink, &string, &length, 0))
{ /* unable to get the string from sourcelink */ }
if(! MLPutByteString(destinationlink, string, length))
{ /* unable to put the string to destination link */ }
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
