4.6.7 pde.tools.math module
Auxiliary mathematical functions.
- class OnlineStatistics(*args, **kwargs)[source]
Bases:
OnlineStatistics
Class for using an online algorithm for calculating statistics.
- class_type = jitclass.OnlineStatistics#7f9103639e90<min:float64,max:float64,mean:float64,_mean2:float64,count:uint64>
- class SmoothData1D(x, y, sigma=None)[source]
Bases:
object
Allows smoothing data in 1d using a Gaussian kernel of defined width.
The data is given a pairs of x and y, the assumption being that there is an underlying relation y = f(x).
Initialize with data.
- Parameters:
x – List of x values
y – List of y values
sigma (float) – The size of the smoothing window in units of x. If omitted, the average distance of x values multiplied by sigma_auto_scale is used.