R/self_intersection.R

Defines functions .self_intersection

.self_intersection <- function(x, y) {

  x <- convert_to_sparse(x)
  y <- convert_to_sparse(y)
  self_intersection_C(x_i = x@i,
                      x_p = x@p,
                      y_i = y@i,
                      y_p = y@p)

}

Try the fcaR package in your browser

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

fcaR documentation built on April 28, 2023, 1:11 a.m.