Giter Club home page Giter Club logo

mexcppclass's Introduction

mexcppclass

MEX function and a library for wrapping, managing and using C++ resources objects, function and classes within MATLAB.

Usage

  1. Compile cppmexclass mex function.
  2. Create resource wrapper and export create/destory functions.
    Wrapper and functions can reside inside mexcppclass mex function or can
    reside inside a shared library:
    • wrapper for C++ resource which implements mexcppclass::ModuleInterface,
    • write and export functions for creating wrapper instance
      void Destroy<ClassName>ModuleInterface(mexcppclass::ModuleInterface *obj)
      and destroying wrapper instance
      void Destroy<ClassName>ModuleInterface(mexcppclass::ModuleInterface *obj).
  3. Put created .(dll|so) library and mexcppclass mex
    in the same directory. Object can be accessed by Matlab by use of commands:
% Create wrapper handle
handle = mexcppclass('create', 'ClassName=LibraryName.so')
% Create object constructor
mexcppclass('call', handle, 'create');
% Call simple methods
mexcppclass('call', handle, 'setvalue', 10);
v = mexcppclass('call', handle, 'getvalue');
% destroy object and wrapper
mexcppclass('destroy', handle);

Example

See test/unit/testmodule.hpp and test/unit/testmodule.cpp for as a reference
point.

Alternative solutions/projects/examples

mexcppclass's People

Contributors

rymut avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.