Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xosiris/torsion_r_package
R Package to Calculate the Torsion of a Parametric Curve
https://github.com/0xosiris/torsion_r_package
Last synced: 28 days ago
JSON representation
R Package to Calculate the Torsion of a Parametric Curve
- Host: GitHub
- URL: https://github.com/0xosiris/torsion_r_package
- Owner: 0xOsiris
- License: mit
- Created: 2022-01-25T21:07:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-07T04:48:55.000Z (over 2 years ago)
- Last Synced: 2023-03-10T19:03:44.018Z (almost 2 years ago)
- Language: R
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```
~~~888~~~ ,e,
888 e88~-_ 888-~\ d88~\ " e88~-_ 888-~88e
888 d888 i 888 C888 888 d888 i 888 888 ____ ____
888 8888 | 888 Y88b 888 8888 | 888 888
888 Y888 ' 888 888D 888 Y888 ' 888 888 d88b
888 "88_-~ 888 \_88P 888 "88_-~ 888 888 Y88P
```# Differential Geometry - R Utility to Calculate Torsion of a Parametric Curve
# Installation Instructions
#### `> library(devtools)`
#### `> install_github("LeytonTaylor/TorsionR");`
#### `> library(TorsionR);`# Usage:
#### `@param alpha A vector of 3 expressions defining the parametric curve`
#### `@param t Evaluation parameter`
#### `@return Scalar value Torsion of alpha at time t`
#### `@details alpha must be a vector of 3 parametric expressions with param 't'`
#### `@examples `
#### `> tAlpha <- torsion(c(expression(1 + t + cos(t)*sin(t),1 + 0.1*sin(t) + cos(t) * 0.1,0.1*sin(t))), 2)`