convert symbolic to Scilab code
b = toSciCode( a )
symbolic matrix
string matrix
Converts a symbolic matrix a to a string matrix b of corresponding Scilab code.
// symbols Syms f g x // symbolic expression f ... f = (x + x * Exp(x))^int32(2) // ... and its derivative g = Diff(f,x) // both as Scilab code toSciCode(f) toSciCode(g) | ![]() | ![]() |
SymEngine: C++ library for fast symbolic manipulation.