| normalize-methods {kappalab} | R Documentation |
Returns the normalized version of a capacity. The capacity
can be given either under the form of an object of class
capacity, card.capacity or Mobius.capacity. In
the case of objects of class capacity and card.capacity,
the normalization is performed by dividing each coefficient of the
capacity by the value of the capacity on the universe. In the case of
objects of class Mobius.capacity, the normalization is
performed by dividing each coefficient of the Möbius transform by the
sum of all the coefficients.
Mobius.capacity.capacity.card.capacity.
capacity-class,
Mobius.capacity-class,
card.capacity-class,
Mobius-methods,
is.normalized-methods.
## a capacity mu <- capacity(0:15) ## normalize it is.normalized(mu) normalize(mu) ## a similar example with a Mobius.capacity object a <- Mobius(mu) is.normalized(a) normalize(a) zeta(normalize(a)) ## a similar example with a card.capacity object mu <- card.capacity(0:6) is.normalized(mu) normalize(mu) Mobius(normalize(mu))