<< toSciFunction SYMSCI Toolbox typeClass >>

SYMSCI Toolbox >> SYMSCI Toolbox > toString

toString

convert symbolic scalar to string

Calling Sequence

s = toString( a )

Arguments

a

symbolic scalar, matrix of symbolic scalars

s

string matrix

Description

Converts symbolic scalars a to a Scilab string matrix s.

Examples

// matrix of symbolic expressions
a = %(Mat(Sym("-x+y-z"),2,3))

// convert to Scilab string matrix
s = toString(a) 

// clean up
reset();
clear a;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< toSciFunction SYMSCI Toolbox typeClass >>