run_matlab_code {matlabr} | R Documentation |
Runs matlab code
Description
This function takes in matlab code, where the last line must end with a ;, and returns the exit status
Usage
run_matlab_code(code, endlines = TRUE, verbose = TRUE,
add_clear_all = FALSE, paths_to_add = NULL, ...)
Arguments
code |
Character vector of code. |
endlines |
Logical of whether the semicolon (;) should be pasted to each element of the vector. |
verbose |
Print out filename to run |
add_clear_all |
Add |
paths_to_add |
Character vector of PATHs to add to the
script using |
... |
Options passed to |
Value
Exit status of matlab code
Examples
if (have_matlab()){
run_matlab_code(c("disp('The version of the matlab is:')", "disp(version)"),
paths_to_add = "~/")
}
## Not run:
if (have_matlab()){
run_matlab_code("disp(version)")
run_matlab_code("disp(version)", paths_to_add = "~/")
run_matlab_code(c("x = 5", "disp(['The value of x is ', num2str(x)])"))
}
## End(Not run)
[Package matlabr version 1.5.2 Index]