MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / trigonometric

Function trigonometric

benchmarks/python-performance.py:47–49  ·  view source on GitHub ↗

r"""Trigonometric: \sin(x) + \cos(y) + \tan(z)

(x, y, z)

Source from the content-addressed store, hash-verified

45
46import numpy as np
47def trigonometric(x, y, z):
48 r"""Trigonometric: \sin(x) + \cos(y) + \tan(z)"""
49 return np.sin(x) + np.cos(y) + np.tan(z)
50
51
52import numpy as np

Callers 1

run_benchmarksFunction · 0.85

Calls 3

sinMethod · 0.80
cosMethod · 0.80
tanMethod · 0.80

Tested by

no test coverage detected