Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/byuflowlab/Mex.jl into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
taylormcd committed Oct 26, 2021
2 parents 84ea72e + f86de1d commit 2321484
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.5']
julia-version: ['1.1', '1.2', '1.3', '1.4', '1.5']
julia-arch: [x64]
os: [ubuntu-latest]

Expand Down
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
julia = "1.0, 1.5"
MATLAB = "0.8.2"
MATLAB = "0.8"
Reexport = "1"
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Mex.jl

![](https://github.com/byuflowlab/Mex.jl/workflows/Run%20tests/badge.svg)

*Embedding [Julia](http://julialang.org/) in the [MATLAB](http://www.mathworks.com/products/matlab/) process*

**Mex.jl** embeds Julia into the MATLAB process using MATLAB's [C++ Mex interface](https://www.mathworks.com/help/matlab/cpp-mex-file-applications.html). This allows Julia functions to be called from MATLAB. This also allows (embedded) Julia to call MATLAB functions.
Expand Down Expand Up @@ -125,4 +127,4 @@ ans =

The first argument to `jl.mex` is the name of the function to be invoked. All remaining arguments are treated as function arguments.

`jl.mex` expects the functions on which it is invoked to accept a single argument of type `Vector{MATLAB.MxArray}` and to return an iterable collection of values on which `MATLAB.mxarray` may be successfully invoked (_e.g._, a value of type `Vector{MATLAB.MxArray}`).
`jl.mex` expects the functions on which it is invoked to accept a single argument of type `Vector{MATLAB.MxArray}` and to return an iterable collection of values on which `MATLAB.mxarray` may be successfully invoked (_e.g._, a value of type `Vector{MATLAB.MxArray}`).

0 comments on commit 2321484

Please sign in to comment.