Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muschellij2/matlabr
R Package For Calling Matlab Through System
https://github.com/muschellij2/matlabr
Last synced: about 2 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 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-20T20:45:47.000Z (about 1 year ago)
- Last Synced: 2024-11-01T02:34:30.239Z (about 2 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
---[![Travis build status](https://travis-ci.org/muschellij2/matlabr.svg?branch=master)](https://travis-ci.org/muschellij2/matlabr)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/muschellij2/matlabr?branch=master&svg=true)](https://ci.appveyor.com/project/muschellij2/matlabr)
[![Coverage status](https://coveralls.io/repos/github/muschellij2/matlabr/badge.svg?branch=master)](https://coveralls.io/r/muschellij2/matlabr?branch=master)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/matlabr)](https://cran.R-project.org/package=matlabr)
[![Downloads](https://cranlogs.r-pkg.org/badges/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")
```