ALIGN_DOWN
ALIGN_DOWN Description Aligns the given value down to the nearest multiple of alignment.
Read MoreBitVecAlignmentScore
BitVecAlignmentScore Description Calculate alignment score between two bitvectors. Used in bioinformatics-style sequence alignment with match/mismatch scoring.
Read MoreBitVecBestAlignment
BitVecBestAlignment Description Find best overlapping alignment between two bitvectors. Returns the offset that gives the best alignment score.
Read MoreBitVecCorrelation
BitVecCorrelation Description Calculate Pearson correlation coefficient between two bitvectors. Treats bits as 0/1 values and computes linear correlation.
Read MoreBitVecCosineSimilarity
BitVecCosineSimilarity Description Calculate cosine similarity between two bitvectors. Treats bitvectors as binary vectors and computes cosine of angle between them.
Read MoreBitVecDotProduct
BitVecDotProduct Description Calculate dot product of two bitvectors. Dot product is the count of positions where both bits are 1.
Read MoreBitVecEditDistance
BitVecEditDistance Description Calculate edit distance between two bitvectors. Edit distance is minimum number of single-bit operations to transform one into the other.
Read MoreBitVecEntropy
BitVecEntropy Description Calculate information entropy of a bitvector. Entropy measures the randomness/information content of the bit pattern.
Read MoreBitVecHammingDistance
BitVecHammingDistance Description Calculate Hamming distance between two bitvectors. Hamming distance is the number of positions where bits differ.
Read MoreBitVecJaccardSimilarity
BitVecJaccardSimilarity Description Calculate Jaccard similarity between two bitvectors. Jaccard similarity = |intersection| / |union|
Read More