Description Usage Arguments Value Examples
View source: R/matlab_script.R
This function takes in matlab code, where the last line must end with a ;, and returns the exit status
1 2 |
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
1 2 3 4 5 6 7 8 9 10 11 12 | 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)
|
sh: 1: cannot create /dev/null: Permission denied
sh: 1: cannot create /dev/null: Permission denied
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.