| Extract,big.matrix {bigmemory} | R Documentation |
Extract or replace big.matrix elements
## S4 method for signature 'big.matrix,ANY,ANY,missing' x[i, j, drop] ## S4 method for signature 'big.matrix,ANY,ANY,logical' x[i, j, drop] ## S4 method for signature 'big.matrix,missing,ANY,missing' x[i, j, drop] ## S4 method for signature 'big.matrix,missing,ANY,logical' x[i, j, drop] ## S4 method for signature 'big.matrix,ANY,missing,missing' x[i, j, drop] ## S4 method for signature 'big.matrix,ANY,missing,logical' x[i, j, drop] ## S4 method for signature 'big.matrix,missing,missing,missing' x[i, j, drop] ## S4 method for signature 'big.matrix,missing,missing,logical' x[i, j, drop] ## S4 method for signature 'big.matrix,matrix,missing,missing' x[i, j, drop] ## S4 replacement method for signature 'big.matrix,ANY,ANY' x[i, j] <- value ## S4 replacement method for signature 'big.matrix,missing,ANY' x[i, j] <- value ## S4 replacement method for signature 'big.matrix,ANY,missing' x[i, j] <- value ## S4 replacement method for signature 'big.matrix,missing,missing' x[i, j] <- value ## S4 replacement method for signature 'big.matrix,matrix,missing' x[i, j] <- value
x |
A |
i |
Indices specifying the rows |
j |
Indices specifying the columns |
drop |
Logical indication if reduce to minimum dimensions |
value |
typically an array-like R object of similar class |