PageRenderTime 26ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/fingerprint/man/fplogical.Rd

http://github.com/rajarshi/cdkr
Unknown | 39 lines | 36 code | 3 blank | 0 comment | 0 complexity | 628d41caa54adf763db1ab716b5733b8 MD5 | raw file
  1. \name{fplogical}
  2. \alias{!}
  3. \alias{|}
  4. \alias{&}
  5. \alias{xor}
  6. \alias{|,fingerprint,fingerprint-method}
  7. \alias{&,fingerprint,fingerprint-method}
  8. \alias{xor,fingerprint,fingerprint-method}
  9. \alias{!,fingerprint-method}
  10. \title{
  11. Logical Operators for Fingerprints
  12. }
  13. \description{
  14. These functions perform logical operatiosn (AND, OR, NOT, XOR) on the supplied
  15. binary fingerprints. Thus for two fingerprints A and B we have
  16. \describe{
  17. \item{\code{&}}{Logical AND}
  18. \item{\code{|}}{Logical OR}
  19. \item{\code{xor}}{Logical XOR}
  20. \item{\code{!}}{Logical NOT (negation)}
  21. }
  22. }
  23. \arguments{
  24. \item{e1}{
  25. An object of class \code{fingerprint}
  26. }
  27. \item{e2}{
  28. An object of class \code{fingerprint}
  29. }
  30. }
  31. \value{
  32. A fingerprint object
  33. }
  34. \keyword{logic}
  35. \keyword{methods}
  36. \author{Rajarshi Guha \email{rguha@indiana.edu}}