Calling R from MATLAB on a Mac

5 次查看(过去 30 天)
Is there a canonical method for calling R from MATLAB, on a Mac?

采纳的回答

Manu R
Manu R 2011-1-20
I've used Rscript with the --vanilla flag successfully from the OS X command line in the past. To use in MATLAB, this is what I'd consider doing.
1. Prepend the following to the top of myscript.R, the program you want to run:
#! /usr/bin/Rscript
2. From the OS X shell, set the executable bit on your program if it hasn't been done:
$ chmod u+x myscript.R
3. Now, you're set up to use the system function in MATLAB:
>> system('~/path_to/myscript.R')
The usual caveats about paths apply.
  2 个评论
the cyclist
the cyclist 2011-1-21
Thanks. I'll try this. Hopefully it works as well as your git script, which I recently started using!
the cyclist
the cyclist 2011-1-25
Thanks. Worked great.

请先登录,再进行评论。

更多回答(1 个)

Doug Hull
Doug Hull 2011-1-20
The statistics language, R, is not supported in MATLAB; however, the following link contains MATLAB functions on MATLAB Central and File Exchange that may allow communication from MATLAB to R.
  1 个评论
the cyclist
the cyclist 2011-1-20
Thanks for the reply, Doug, but that looks like a Windows-only solution.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by