Matlab plugin and Rstudio packages
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ali salarian
el 20 de Dic. de 2020
Hi, i'm interested in knowing whether if Rstudio packages can be converted into matlab pugins ?
thanks
0 comentarios
Respuesta aceptada
Ive J
el 20 de Dic. de 2020
Editada: Ive J
el 20 de Dic. de 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:
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!