R/methods-subtract.R

# 
# fa_subtract <- function(e1, e2) {
#     call <- match.call()
#     call[[1]] <- quote(`-`)
#     label <- sprintf("Calculating: %s (fa_subtract)", deparse1(call))
#     
#     fa_pairwise_operator(e1, e2, op = "-", label = label)
# }
# 
# 
# 
# setMethod('-', signature(e1 = "FileArray", e2 = "FileArray"), fa_subtract)
# 
# 
# setMethod('-', signature(e1 = "FileArray", e2 = "numeric"), fa_subtract)
# 
# setMethod('-', signature(e1 = "numeric", e2 = "FileArray"), fa_subtract)
# 
# 
# setMethod('-', signature(e1 = "FileArray", e2 = "complex"), fa_subtract)
# 
# setMethod('-', signature(e1 = "complex", e2 = "FileArray"), fa_subtract)
# 
# 
# setMethod('-', signature(e1 = "FileArray", e2 = "logical"), fa_subtract)
# 
# setMethod('-', signature(e1 = "logical", e2 = "FileArray"), fa_subtract)
# 
# 
# setMethod('-', signature(e1 = "FileArray", e2 = "array"), fa_subtract)
# 
# setMethod('-', signature(e1 = "array", e2 = "FileArray"), fa_subtract)

Try the filearray package in your browser

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

filearray documentation built on July 9, 2023, 5:53 p.m.