my_hash: Function that applies a hash function to each column of the...

Description Usage Arguments Value Examples

View source: R/minhash_v2.R

Description

Function that applies a hash function to each column of the band from the signature matrix import bit64

Usage

1
my_hash(a_band)

Arguments

a_band

Band from the signature matrix M

Value

a 64 bit integer

Examples

1
2
3
4
band1 <- c(2,1,2,1,2)
band2 <- c(4,5,2,1,9)
combined_band <- rbind(band1,band2)
my_hash(combined_band)

tlsh documentation built on Nov. 16, 2020, 9:15 a.m.

Related to my_hash in tlsh...