<< isSet SYMSCI Toolbox isVector >>

SYMSCI Toolbox >> SYMSCI Toolbox > isSym

isSym

check for symbolic object

Calling Sequence

t = isSym( x )

Arguments

x

variable of any type

t

boolean

Description

Returns true (%f) if x is a symbolic object and false (%f) otherwise.

Examples

// some variables
a = 1.234;
b = zeros(5,5);
c = %(Sym("(x+y)*(x-y)^10"));

// check for symbolic objects
isSym(a)
isSym(b)
isSym(c)

// clean up
reset();
clear c;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< isSet SYMSCI Toolbox isVector >>