run_matlab_code {matlabr} | R Documentation |
This function takes in matlab code, where the last line must end with a ;, and returns the exit status
run_matlab_code(code, endlines = TRUE, verbose = TRUE,
add_clear_all = FALSE, paths_to_add = NULL, ...)
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 |
Exit status of matlab code
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)