https://github.com/pythoncoderunicorn/mathr
basic math functions
https://github.com/pythoncoderunicorn/mathr
Last synced: 4 months ago
JSON representation
basic math functions
- Host: GitHub
- URL: https://github.com/pythoncoderunicorn/mathr
- Owner: PythonCoderUnicorn
- License: other
- Created: 2022-01-29T19:32:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-01T23:57:34.000Z (about 3 years ago)
- Last Synced: 2025-03-11T05:18:39.728Z (10 months ago)
- Language: R
- Homepage: https://pythoncoderunicorn.github.io/mathR/
- Size: 364 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# mathR
A basic math function library
```
remotes::install_github('PythonCoderUnicorn/mathR')
```
or
```
devtools::install_github("PythonCoderUnicorn/mathR")
```
load the library
```
library(mathR)
```
Add example
```
add(4,8)
# or
x = 1:5
y = 11:16
add(x, y)
```