| http://www.w3.org/ns/prov#value | - The PDF is a vector that is indexed using thebin2dec function (plus one), so that'0000' corresponds to index 1 (i.e. bin2dec('0 0 0 0') + 1 = 1)'0001' corresponds to index 2 (bin2dec('0001')+1 = 2)'0111' corresponds to index 8 (bin2dec('0111')+1 = 8)and so on for all 2^4 = 16 possibilities.I would like to order my PDF vector so that '0000' correspondsto PDF(1), '0001' is PDF(2), '0010' is PDF(3),
|