Python | Numpy np.chebgrid3d() method
With the help of np.chebgrid3d() method, we can get the array of coefficients after evaluation the chebyshev series on cartesian product of x, y and z by using np.chebgrid3d() method. Syntax : np.chebgrid3d(x, y, z, c) Return : Return an array after evaluation on (x, y, z). Example #1 : In this exam