JaccardDissimilarity
JaccardDissimilarity(u, v)returns the Jaccard-Needham dissimilarity between the two boolean 1-D lists
uandv, which is defined as(c_tf + c_ft) / (c_tt + c_ft + c_tf), where n islen(u)andc_ijis the number of occurrences ofu(k)=iandv(k)=jfork<n.
Examples
>> JaccardDissimilarity({1, 0, 1, 1, 0, 1, 1}, {0, 1, 1, 0, 0, 0, 1})2/3Implementation status
- ✅ - full supported