How to use 'from math import sqrt' in Python

Every line of 'from math import sqrt' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
132def sqrt(x: T.Tensor) -> T.Tensor:
133 """
134 Elementwise square root of a tensor.
135
136 Args:
137 x (non-negative): A tensor.
138
139 Returns:
140 tensor(non-negative): Elementwise square root.
141
142 """
143 return ne.evaluate('sqrt(x)')

Related snippets