View source: R/err.WN.vec.dim.bit.R
err.WN.vec.dim.bit | R Documentation |
Returns a TRUE boolean bit if the argument is not an atomic vector withh whole-number elements(could be of type 'double', not necessarily of type 'int') and must have a specified dimension.
err.WN.vec.dim.bit(v, n)
v |
The vector/item under scrutiny |
n |
The size of the vector/object v |
Returns TRUE if the value v is NULL
The vector must be of atomic class(excludes lists or Dataframes. Returns TRUE if they are)
The elements of the object/vector v could be whole no.s of type 'double'. Not necessarily 'int'. Returns FALSE in this case.
Return type is a boolean bit.
Returns TRUE if an error-worthy exception is detected.
Chitran Ghosal
boolean return version of err.WN.vec.dim(v, n) .
See function err.WN.vec.dim().
v <- c(1.3, 2.0)
w <- c(1.0, 2.0)
L <- list(v, w)
err.WN.vec.dim.bit(v, 2)
err.WN.vec.dim.bit(w, 2)
err.WN.vec.dim.bit(w, 3)
err.WN.vec.dim.bit(L, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.