UnivarDistrList: Generating function for UnivarDistrList-class
Description
Generates an object of class "UnivarDistrList".
Usage
UnivarDistrList(..., Dlist)
Value
Object of class "UnivarDistrList"
Arguments
...
Objects of class "UnivariateDistribution" (or subclasses)
Dlist
an optional list or object of class "UnivarDistrList";
if not missing it is appended to argument ...; this way
UnivarMixingDistribution may also be called with a list (or
"UnivarDistrList"-object) as argument as suggested in an e-mail
by Krunoslav Sever (thank you!)
(DL <- UnivarDistrList(Norm(), Exp(), Pois()))
plot(DL)
as(Norm(), "UnivarDistrList")
## The function is currently defined asfunction(...){
new("UnivarDistrList", list(...))
}