LCPrincple: Least-Committed Principle for creating bbas

Description Usage Arguments Value Examples

View source: R/LCPrinciple.R

Description

Least-Committed Principle for creating bbas

Usage

1

Arguments

Mat

matrix, m \times k, m is the number of sources, k is the length of probability vectors. If the number of sources is 1, the input probability could be a vector.

Value

mass_bba matrix, m \times 2^k, each column is a bba. If there is only one source, the output is a bba vector.

Examples

1
2
3
4
5
6
7
pro1 = c(0.25, 0.25, 0.25, 0.25);
pro2 = c(0.3, 0.2, 0.2, 0.1);
pro3 = rbind(pro1, pro2);

LCPrincple(pro1)
LCPrincple(pro2)
LCPrincple(pro3)

ibelief documentation built on Jan. 7, 2021, 9:07 a.m.