Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/numpy/numpy
/ _chbevl
Function
_chbevl
numpy/lib/_function_base_impl.py:3520–3529 ·
view source on GitHub ↗
(x, vals)
Source
from the content-addressed store, hash-verified
3518
3519
3520
def
_chbevl(x, vals):
3521
b0 = vals[0]
3522
b1 = 0.0
3523
3524
for
i in range(1, len(vals)):
3525
b2 = b1
3526
b1 = b0
3527
b0 = x * b1 - b2 + vals[i]
3528
3529
return
0.5 * (b0 - b2)
3530
3531
3532
def
_i0_1(x):
Callers
2
_i0_1
Function · 0.85
_i0_2
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…