Every line of 'python math cos' 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.
106 def cos(x): 107 return mod(x).cos(x)
20 def cosd(x): 21 return cos(radians(x))
331 def cos_sin(ctx, z, **kwargs): 332 return ctx.cos(z, **kwargs), ctx.sin(z, **kwargs)
16 def cosd(x): return np.cos(x / 180. * np.pi)