Learn R Programming

ibelief (version 1.3.1)

PCR6: PCR6 rule

Description

PCR6 combination rule

Usage

PCR6(MassIn, TabConflict)

Arguments

MassIn

Matrix with \(2^n\) rows and \(nb\) columns. Parameter \(n\) is the number of classes (or the length of discernment frame) and \(nb\) is the number of experts.

TabConflict

The conflict table, which can be got using the function \(ConflictTable\)

Value

Two parts:

Mass

matrix with \(2^n\) rows and one column, the combined mass

conf

a number, total conflict

See Also

ConflictTable, decisionDST

Examples

Run this code
# NOT RUN {
## The conflict table for two experts in a discernment frame with three elements
TabConflict=ConflictTable(2^3,2) 
m1=c(0,0.4, 0.1, 0.2, 0.2, 0, 0, 0.1);
m2=c(0,0.2, 0.3, 0.1, 0.1, 0, 0.2, 0.1);
PCR6(cbind(m1,m2),TabConflict)

# }

Run the code above in your browser using DataLab