Probabilities to Columns (3)

Description

Takes a list of candidate objects CANDS and three lists of objects A, B, C. For each object in CANDS, return the probability in each of the lists as an explicit double column. The probability is taken from CANDS and propagated as is.

Input

  • CANDS [OBJ]: a list of objects. RESULT will contain these objects
  • A [OBJ]: a list of objects from which to take probabilities
  • B [OBJ]: a list of objects from which to take probabilities
  • C [OBJ]: a list of objects from which to take probabilities

Output

  • RESULT [OBJ]: the objects in CANDS, with their probabilities from the lists as double columns

Parameters