chaospy.Distribution.cdf¶
- Distribution.cdf(x_data)[source]¶
Cumulative distribution function.
Note that chaospy only supports cumulative distribution functions for stochastically independent distributions.
- Args:
- x_data (numpy.ndarray):
Location for the distribution function. Assumes that
len(x_data) == len(distribution).
- Returns:
- (numpy.ndarray):
Evaluated distribution function values, where output has shape
x_data.shapein one dimension andx_data.shape[1:]in higher dimensions.