<< Sin SYMSCI Toolbox Sub >>

SYMSCI Toolbox >> SYMSCI Toolbox > Sqrt

Sqrt

symbolic square root

Syntax

b = Sqrt( a )

Arguments

a, b

symbolic

Description

Returns the square root b = sqrt(a) of a.

Examples

// some values ...
x = Sym("169")
y = Sym("-9")
z = Sym("x*x+5")


// ... and their square roots
Sqrt(x)
Sqrt(y)
Sqrt(z)

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< Sin SYMSCI Toolbox Sub >>