From a2b329201b95730932df2cf1692faa2bc87b1ab6 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 14 Dec 2016 10:17:29 -0800 Subject: [PATCH 1/3] Viewing the MATLAB Session Put a little section in the README for https://github.com/JuliaInterop/MATLAB.jl/pull/79 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5bdbf40..50ce881 100644 --- a/README.md +++ b/README.md @@ -311,6 +311,9 @@ xx, yy = mxcall(:meshgrid, 2, x, y) ``mxcall`` puts the input arguments to the MATLAB workspace (using mangled names), evaluates the function call in MATLAB, and retrievs the variable from the MATLAB session. This function is mainly provided for convenience. However, you should keep in mind that it may incur considerable overhead due to the communication between MATLAB and Julia domain. +#### Viewing the MATLAB Session + +To open an interactive window for the MATLAB session, use the command `show_msession()`. To hide the window, use `hide_msession()`. Note that closing this window will result in a errors, so it is advised that one uses the `hide_msession()` command instead. #### Advanced use of MATLAB Engines From 3a9f3e5fc491b5fb50395f54ca3688c400756da3 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 14 Dec 2016 10:28:20 -0800 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 50ce881..bdedfdd 100644 --- a/README.md +++ b/README.md @@ -315,6 +315,8 @@ xx, yy = mxcall(:meshgrid, 2, x, y) To open an interactive window for the MATLAB session, use the command `show_msession()`. To hide the window, use `hide_msession()`. Note that closing this window will result in a errors, so it is advised that one uses the `hide_msession()` command instead. +Note that this feature only works on Windows. + #### Advanced use of MATLAB Engines This package provides a series of functions for users to control the communication with MATLAB sessions. From d0ea27cd26221585a6e0347f2a6d1e657f23be4e Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 14 Dec 2016 13:16:43 -0800 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdedfdd..6781604 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,7 @@ xx, yy = mxcall(:meshgrid, 2, x, y) #### Viewing the MATLAB Session -To open an interactive window for the MATLAB session, use the command `show_msession()`. To hide the window, use `hide_msession()`. Note that closing this window will result in a errors, so it is advised that one uses the `hide_msession()` command instead. +To open an interactive window for the MATLAB session, use the command `show_msession()`. To hide the window, use `hide_msession()`. Note that closing this window will result in an error, so it is advised that one uses the `hide_msession()` command instead. Note that this feature only works on Windows.