Open In App

Python | Numpy np.chebadd() method

With the help of np.chebadd() method, we can get the addition of two Chebyshev series by using np.chebadd() method.

Syntax : np.chebadd(s1, s2)
Return : Return an array after addition.



Example #1 :
In this example we can see that by using np.chebadd() method, we are able to get the addition of two chebyshev series using this method.




# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
  
s1 = (4, 6, 8)
s2 = (3, 5, 7)
# using np.chebadd() method
gfg = C.chebadd(s1, s2)
  
print(gfg)

Output :

[ 7. 11. 15.]



Example #2 :




# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
  
s1 = (4, 6, 8, 1, 3, 5)
s2 = (3, 5, 7, 2, 4, 6)
# using np.chebadd() method
gfg = C.chebadd(s1, s2)
  
print(gfg)

Output :

[ 7. 11. 15. 3. 7. 11.]

Article Tags :