make_chebyshev_grid

hcipy.field.make_chebyshev_grid(dims, minimum=None, maximum=None)

Make a Chebyshev grid.

Parameters:
dimstuple of ints

The number of points in each dimension.

minimumscalar or tuple of floats

The minimum value in each dimension. If a scalar, it will be used for all dimensions. The default is -1.

maximumscalar or tuple of floats

The maximum value in each dimension. If a scalar, it will be used for all dimensions. The default is 1.

Returns:
Grid

A CartesianGrid with SeparatedCoords.