Matlab plugin and Rstudio packages
조회 수: 7 (최근 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!