https://github.com/muschellij2/matlabr
R Package For Calling Matlab Through System
https://github.com/muschellij2/matlabr
Last synced: 3 months ago
JSON representation
R Package For Calling Matlab Through System
- Host: GitHub
- URL: https://github.com/muschellij2/matlabr
- Owner: muschellij2
- Created: 2015-04-06T17:00:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-11-20T20:45:47.000Z (over 1 year ago)
- Last Synced: 2024-11-01T02:34:30.239Z (8 months ago)
- Language: R
- Size: 38.1 KB
- Stars: 13
- Watchers: 4
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---[](https://travis-ci.org/muschellij2/matlabr)
[](https://ci.appveyor.com/project/muschellij2/matlabr)
[](https://coveralls.io/r/muschellij2/matlabr?branch=master)
[](https://cran.R-project.org/package=matlabr)
[](https://cran.R-project.org/package=matlabr)```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# matlabr Package:`matlabr` is an R package to call MATLAB directly using `system` command. This is a simple package that tries to get around using `R.matlab` and a MATLAB server.
## InstallationYou can install the stable version on
[CRAN](https://cran.R-project.org/package=matlabr):```r
install.packages('matlabr', dependencies = TRUE)
```You can install `matlabr` from GitHub with:
```{r gh-installation, eval = FALSE}
# install.packages("remotes")
remotes::install_github("muschellij2/matlabr")
```