MWrap 1.0
=========

MWrap is an interface generation system in the spirit of SWIG or matwrap.  From
a set of augmented MATLAB script files, MWrap will generate a MEX gateway to
desired C/C++ function calls and MATLAB function files to access that gateway.
The details of converting to and from MATLAB's data structures, and of
allocating and freeing temporary storage, are hidden from the user.

To compile, edit make.inc and then run make.  The output will be a standalone
executable (mwrap) in the main directory.

The user's guide (mwrap.pdf) describes MWrap in detail; you can also look at
the example subdirectories and the testing subdirectory to get some idea of
how MWrap is used.

---

Version 0.33
Author: David Bindel <bindel@cs.cornell.edu>

    Initial revision, clone David's repository

---

Version 1.0
Authors: Zydrunas Gimbutas, Alex Barnett, Libin Lu

    Add support for 64-bit Matlab and gcc-4.6
    Add support for gcc 7.3+
    Add support for Matlab R2018a complex interleaved API
    Add support for C99 int32_t, int64_t, uint32_t, uint64_t 
    Allow single precision Matlab inputs and outputs

