WxData

Return To WxData Wiki Main Page

Linear Anti-Aliasing Between Points

def linear_anti_aliasing(x, 
                         y, 
                         anti_aliasing):

This function interpolates between x and y.

Required Arguments:

1) x (array) - Array of x-values.

2) y (array) - Array of y-values.

3) anti_aliasing (Integer) - The amount of points in between x and y values.

Returns

An interpolated numpy.array of x and y data.