Filter löschen
Filter löschen

How to run an R function from MATLAB

176 Ansichten (letzte 30 Tage)
Daniel
Daniel am 24 Jul. 2015
Kommentiert: Haris K. am 16 Apr. 2024
Hi,
I have written some code in R and for various reasons, I can't rewrite it in MATLAB easily. I was wondering if there is a way to call that R function from a MATLAB script, run it, and import the results of that function back into MATLAB.
Thanks

Antworten (3)

Cindy Solomon
Cindy Solomon am 27 Jul. 2015
Bearbeitet: Cindy Solomon am 27 Jul. 2015
Hi Daniel,
There is a File Exchange function here that appears to have this functionality (calling an R-command, copying variables to MATLAB, etc). From looking at the comments, a few users have had some difficulty with the COM connection, so it is possible to use the "system" command as well, which lets you execute commands from the OS in MATLAB. For more information on that function, see its doc page here.
I hope this helps!
  1 Kommentar
Sinan Islam
Sinan Islam am 15 Nov. 2020
Why MATLAB never consider adding R to the External Language Interfaces? Isnt R popular enough?

Melden Sie sich an, um zu kommentieren.


Hemn
Hemn am 2 Jun. 2021
Bearbeitet: Hemn am 2 Jun. 2021
Hi Daniel
Of course you can run R file in matlab and for this you can use !Rscript function. imagine that you have an R file named myfile.r, then you can run your file as following:
!Rscript myfile.r
just be careful that your R file is in your matlab path.
  3 Kommentare
Angie Rodriguez
Angie Rodriguez am 4 Feb. 2023
Hi! ... I was looking for that function but i didn't find it. Is not implemented anymore? In what version does it works?
Walter Roberson
Walter Roberson am 4 Feb. 2023
If you are using Windows, then you could consider using System.Diagnostics.Process to create an instance of R that you could communicate with by standard input and standard output.

Melden Sie sich an, um zu kommentieren.


Haris K.
Haris K. am 15 Apr. 2024
Bearbeitet: Haris K. am 15 Apr. 2024
A couple of things if you are trying to run an R script using system(), that could be helpful to other fellow MATLABians out there.
  1. You might need to add Rscript to your system's PATH environment variables. If you are on Windows, to do that, in your Windows search box type ‘Edit the system environment variables’ > click on the button ‘Environment Variables…’ > click on the line reading ‘Path’, and then on button ‘Edit’ > on the window that opens, press ‘New’ and type in the path of the Rscript.exe: ‘C:\Program Files\R\R-4.3.3\bin\x64’.
  2. By default R will set your MATLAB’s pwd as the R’s working directory when calling the R script via MATLAB. If the R script you want to run is located elsewhere, simply type the full path. For example:
system('Rscript C:\Users\x\Documents\myscript.R')
  1 Kommentar
Haris K.
Haris K. am 16 Apr. 2024
Also, you will need to enclose the path inside double quotation marks if you are specifying a path that contains spaces (-thats a cmd thing):
system('Rscript "C:\Users\x\Documents\Another Folder\myscript.R"')

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by