-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
API - ConsistencyFor issues related to internal interfacesFor issues related to internal interfaces
Description
The current implementation of pdf, cdf, and logpdf allows computation at only a single point. Add support for inputting multiple values.
Example:
mixture = NormalMeanVarianceMixtures(**mixture_params)
values = np.linspace(-1, 1, 40)
rqmc_params = {"error_tolerance": 0.001, "i_max": 300}
mixture.pdf(1, rqmc_params) # One point
mixture.pdf(values, rqmc_params) # Multiply pointsReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
API - ConsistencyFor issues related to internal interfacesFor issues related to internal interfaces