Matlab plugin and Rstudio packages

7 views (last 30 days)
ali salarian
ali salarian on 20 Dec 2020
Edited: Ive J on 20 Dec 2020
Hi, i'm interested in knowing whether if Rstudio packages can be converted into matlab pugins ?
thanks

Accepted Answer

Ive J
Ive J on 20 Dec 2020
Edited: Ive J on 20 Dec 2020
There are some equivalent R functions in MATLAB (e.g. here). But there is no tool that can automatically and perfectly convert a complete R package executable in MATLAB. There are interfaces as far as I know which allow you to call MATLAB from R or the other way around (I haven't found any of them flawless).
In my opinion, the best practice is to use them separately. But if you are designing a pipeline in MATLAB and you need to run part of your analysis with some R packages, you can write proper R functions and call them within MATLAB, for instance:
system('path\to\R.exe CMD BATCH myRcode.r') % for windows
You may also find this link useful:

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!