Costruzione dell’interfaccia di MATLAB alla libreria C++
clibgen
Per costruire (pubblicare) un’interfaccia di MATLAB alla libreria C++, chiamare clibPublishInterfaceWorkflow
. Per una panoramica, vedere Steps to Publish a MATLAB Interface to a C++ Library.
Per informazioni sulla chiamata di funzioni della libreria da MATLAB, vedere Utilizzo di un'interfaccia precostruita di MATLAB alla libreria C++.
Funzioni
clibPublishInterfaceWorkflow | Publish interface for C++ library in the Live Editor (Da R2023a) |
clibgen.generateLibraryDefinition | Create definition file for C++ library |
clibgen.buildInterface | Create interface to C++ library without definition file |
Attività di Live Editor
Generare interfaccia C++ | Generate definition file for C++ interface library in the Live Editor (Da R2023a) |
Namespaces
clibgen Namespace | Summary of namespaces and classes to support calling C++ library functionality from MATLAB |
Argomenti
Come pubblicare un’interfaccia
- What Types of Files Define Your Library?
How to set the arguments to theclibgen.generateLibraryDefinition
function. - Steps to Publish a MATLAB Interface to a C++ Library
Outline for publishing an interface to a C++ library. - Requirements for Building Interface to C++ Libraries
Requirements for calling functions in external, compiled C++ libraries from MATLAB.
Pubblicazione dell'interfaccia alle librerie definite da questi file
- Header and C++ Compiled Library Files on Windows
This example creates a MATLAB interface to a C++ library with an import library filematrixOperations.lib
. - Header and C++ Compiled Library Files on Linux
This example creates a MATLAB interface to a C++ library with a shared object filelibmwmatrixOperations.so
. - Header and C++ Compiled Library Files on macOS
This example creates a MATLAB interface to a C++ library with a dynamic shared library filelibmwmatrixOperations.dylib
. - Header and C++ Source Files
This example creates a MATLAB interface to a C++ library defined in source filesmatrixOperations.hpp
andmatrixOperations.cpp
. - Header-Only HPP File
This example creates a MATLAB interface to a C++ library defined in a header fileschool.hpp
.
Definizione e personalizzazione
- Define MATLAB Interface for C++ Library
Generate and edit the MATLAB library definition file to customize and define the interface.
- Publish Help Text for MATLAB Interface to C++ Library
Provide documentation for end-users of a MATLAB interface to a C++ Library.
Condivisione dell’interfaccia
- Distribute MATLAB Interface to C++ Library
How to share your MATLAB interface with MATLAB users.
- C++ to MATLAB Data Type Mapping
Correspondence of MATLAB data types to C/C++ types. - Lifetime Management of C++ Objects in MATLAB
MATLAB rules for managing memory for C++ objects created in a MATLAB interface to a C++ compiled library. - Initialize Pointer Members of C++ Structures for MATLAB Interface to Library
Verify that C++ class constructors initialize pointer members.
Risoluzione dei problemi
Build C++ Library Interface and Review Contents
If library functionality is missing, the library might contain unsupported language features or data types.
C/C++ library features not supported in MATLAB.
Troubleshooting C++ Library Definition Issues
Information for resolving errors when publishing a MATLAB interface to a C++ library.
- Resolve Build Error: Multiple Redefinition Linker Errors
- Resolve Build Error: Unresolved External Symbols
- Build Error Due to Compile-Time Checks
- Errors Parsing Header Files on macOS
Debug C++ Library from MATLAB Interface
How to build a debug version of a MATLAB interface to a C++ library.