isempty {PopED} | R Documentation |
Function written to match MATLAB's isempty function
Description
Function written to match MATLAB's isempty function
Usage
isempty(...)
Arguments
... |
arguments to pass to the function. Typically a matrix. |
Value
Logical. True if the passed object has any dimension that is zero.
See Also
Other MATLAB:
cell()
,
diag_matlab()
,
feval()
,
fileparts()
,
ones()
,
rand()
,
randn()
,
size()
,
tic()
,
toc()
,
zeros()
Examples
isempty(zeros(2,3))
isempty(zeros(2,0))
isempty(c(1,2,3))
[Package PopED version 0.7.0 Index]