CHARACTER values between Fortran and pointer arrays.
subroutinemxCopyPtrToCharacter(px,y,n)subroutinemxCopyCharacterToPtr(y,px,n)character y(n)integer*4 px, n
npxstring or name array
yCHARACTER Fortran array
CHARACTER values between MATLAB name or string arrays and Fortran CHARACTER arrays. They are essential for copying character data from MATLAB's pointer arrays into ordinary Fortran CHARACTER arrays.
mxCopyPtrToCharacter(px,y,n) copies n CHARACTER values from the MATLAB array pointed to by px into the Fortran CHARACTER array y.
mxCopyCharacterToPtr(y,px,n) copies n CHARACTER values from the Fortran CHARACTER array y into the MATLAB string array pointed to by px.
(c) Copyright 1994 by The MathWorks, Inc.