PCR6: PCR6 rule

Description Usage Arguments Value See Also Examples

View source: R/PCR6.R

Description

PCR6 combination rule

Usage

1
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

1
2
3
4
5
## 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)

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