Added base Matlab function

This commit is contained in:
Waldir Leoncio 2020-03-18 08:25:50 +01:00
parent e5cf85d9d4
commit 4c4390f419
3 changed files with 45 additions and 0 deletions

17
man/isempty.Rd Normal file
View file

@ -0,0 +1,17 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/isempty.R
\name{isempty}
\alias{isempty}
\title{Is Array Empty?}
\usage{
isempty(x)
}
\arguments{
\item{x}{array}
}
\description{
Determine whether array is empty. An empty array, table, or timetable has at least one dimension with length 0, such as 0-by-0 or 0-by-5.
}
\details{
Emulates the behavior of the `isempty` function on Matlab
}