Matlab plugin and Rstudio packages
5 次查看(过去 30 天)
显示 更早的评论
Hi, i'm interested in knowing whether if Rstudio packages can be converted into matlab pugins ?
thanks
0 个评论
采纳的回答
Ive J
2020-12-20
编辑:Ive J
2020-12-20
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:
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!