Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gjlaurent/easylink
EasyLink is a C++ software development kit for developing blocks for SIMULINK (S-functions)
https://github.com/gjlaurent/easylink
matlab simulink
Last synced: 13 days ago
JSON representation
EasyLink is a C++ software development kit for developing blocks for SIMULINK (S-functions)
- Host: GitHub
- URL: https://github.com/gjlaurent/easylink
- Owner: gjlaurent
- License: gpl-3.0
- Created: 2019-04-07T16:27:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-18T15:51:36.000Z (about 5 years ago)
- Last Synced: 2023-08-23T16:33:26.020Z (about 1 year ago)
- Topics: matlab, simulink
- Language: C++
- Homepage:
- Size: 2.24 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EasyLink
EasyLink is a C++ software development kit for developing MEX-functions
for MATLAB and blocks for SIMULINK (S-functions).EasyLink allows to develop C++ MEX-functions and S-functions with less code and
using friendly classes.EasyLink is simpler and as efficient than the MATLAB C API. It provides a
direct access to input, output and parameter ports as well as MATLAB
variables thanks to a C++ Array class or using Eigen.EasyLink is a multi-platform library that works under Linux, OSX and Windows.
EasyLink is developed and maintained within the FEMTO-ST Institute located in Besançon, France and hosted by Renater and Github.
EasyLink official site is: https://gjlaurent.github.io/easylink/
# Documentation
- Quick reference
- Examples
- User reference# Installation
- Clone ar download EasyLink in a local directory
- Open MATLAB
- Set the matlab current directory where EasyLink is located
- Execute the startup file "install.m" and follow
instructions to select an installed C++ compiler
`>>install`
- Execute the following command to compile and link a demo file
`>>make sfunOffset.cpp`
- Open Simulink
- Open the file "testOffset.mdl/slx" and run it to check the installationUse the file sfunOffset.cpp as a template to write a new S-function (SIMULINK).
Use the file mexArrayProduct.cpp as a template to write a new MEX-function (MATLAB).
# Licence
EasyLink is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.EasyLink is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the sources files. If not, see http://www.gnu.org/licenses/.Copyright (c) 2014-2019 FEMTO-ST, ENSMM, UFC, CNRS.