LCPrincple {ibelief}R Documentation

Least-Committed Principle for creating bbas

Description

Least-Committed Principle for creating bbas

Usage

LCPrincple(Mat)

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

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)


[Package ibelief version 1.3.1 Index]