First Steps
¶
This is meant to be a gentle introduction to the symengine
C++ library.
Working with Expressions¶
We will start by inspecting the use of Expression
#include <symengine/expression.h>
using SymEngine::Expression;
Expression x("x");
auto ex = pow(x+sqrt(Expression(2)), 6);
ex
expand(ex)
Review
Written on 27 August 2020, proofread on 20 January 2021