From 8a7fa4834356cd4bc2c09d55b55e5a7e90c451c1 Mon Sep 17 00:00:00 2001 From: Kevin Mattheus Moerman Date: Sun, 29 Oct 2017 22:29:46 -0400 Subject: [PATCH] Fixed minor typo retrievs, retrieves --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a772d14..f040d6a 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ xx, yy = mxcall(:meshgrid, 2, x, y) ``` *Note:* Since MATLAB functions behavior depends on the number of outputs, you have to specify the number of output arguments in ``mxcall`` as the second argument. -``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. +``mxcall`` puts the input arguments to the MATLAB workspace (using mangled names), evaluates the function call in MATLAB, and retrieves 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 (Windows only)