Learn R Programming

R.huge (version 0.10.1)

writeValues.AbstractFileArray: Writes values to a file array

Description

Writes values to a file array.

Usage

# S3 method for AbstractFileArray
writeValues(this, indices=NULL, values, mode=getStorageMode(this),
  size=getBytesPerCell(this), offset=getDataOffset(this), order=FALSE, ...)

Value

Returns nothing.

Arguments

indices

An integer vector of indices to be updated. If NULL, all cells are considered.

values

A numeric vector of values to be assigned.

mode

The storage mode to be used.

size

A integer specifying the number of bytes per cell.

offset

A integer specifying the file offset of the data section.

order

If TRUE, the data is reordered before being written.

...

Additional arguments passed to *writeAllValues().

Author

Henrik Bengtsson

See Also

*writeAllValues(). For more information see AbstractFileArray.