R/auxiliary_dis_hamming.R

Defines functions auxiliary_dis_hamming

auxiliary_dis_hamming <- function(x, y) {

  if (x == y) {

    return(0)

  } else {

    return(1)

  }

}

Try the otsfeatures package in your browser

Any scripts or data that you put into this service are public.

otsfeatures documentation built on March 7, 2023, 7:38 p.m.