-
Notifications
You must be signed in to change notification settings - Fork 31
Symbolic Computation in R
This page has moved to https://github.com/rstats-gsoc/gsoc2018/wiki/SymEngine.R:-Symbolic-Computation-in-R
SymEngine is a standalone fast C++ symbolic manipulation library, which provides a fast computer_algebra_system , which is a lack in R. It has wrappers in several other languages, namely C, Python, Ruby, Julia and Haskell.
- RSymPy is a R package that link the sympy python library using rJava and Jython. It is relative hard to install, and the interface is not transparent enough for R users.
The project is expected to provide a fast computer algebra system and a seamless interface within R.
- Build a low level interface using Rcpp and the C-wrapper of symengine.
- Provide friendly user-interfacing functions and methods (e.g. the groupGenerics for math functions and binary operators).
- Write documentation, vignettes and unit tests.
The resulting package is expected to provide a solid base of symbolic computation in R.
- Isuru Fernando <isuruf@gmail.com> is willing to mentor on symengine side.
- Need another R mentor who may be familiar with Rcpp.
You’ll have to store a pointer to SymEngine objects. For the test assume a SymEngine object is like below,
typedef struct {
double A;
double B;
} CStruct;
Come up with a solution to create a struct, update the struct, delete the struct and showing the contents of the struct from R.
Students, please post a link to your test results here.