Updated docs
This commit is contained in:
parent
3f9bb0b9bd
commit
39145ee865
2 changed files with 7 additions and 2 deletions
|
|
@ -4,13 +4,16 @@
|
||||||
\alias{cell}
|
\alias{cell}
|
||||||
\title{Cell array}
|
\title{Cell array}
|
||||||
\usage{
|
\usage{
|
||||||
cell(n, sz = c(n, n), ...)
|
cell(n, sz = c(n, n), expandable = FALSE, ...)
|
||||||
}
|
}
|
||||||
\arguments{
|
\arguments{
|
||||||
\item{n}{a the first dimension (or both, if sz is not passed)}
|
\item{n}{a the first dimension (or both, if sz is not passed)}
|
||||||
|
|
||||||
\item{sz}{the second dimension (or 1st and 2nd, if not passed)}
|
\item{sz}{the second dimension (or 1st and 2nd, if not passed)}
|
||||||
|
|
||||||
|
\item{expandable}{if TRUE, output is a list (so it can take different
|
||||||
|
lengths)}
|
||||||
|
|
||||||
\item{...}{Other dimensions}
|
\item{...}{Other dimensions}
|
||||||
}
|
}
|
||||||
\value{
|
\value{
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,12 @@
|
||||||
\alias{find}
|
\alias{find}
|
||||||
\title{Find indices and values of nonzero elements}
|
\title{Find indices and values of nonzero elements}
|
||||||
\usage{
|
\usage{
|
||||||
find(x)
|
find(x, sort = TRUE)
|
||||||
}
|
}
|
||||||
\arguments{
|
\arguments{
|
||||||
\item{x}{object or logic operation on an object}
|
\item{x}{object or logic operation on an object}
|
||||||
|
|
||||||
|
\item{sort}{sort output?}
|
||||||
}
|
}
|
||||||
\description{
|
\description{
|
||||||
Emulates behavior of `find`
|
Emulates behavior of `find`
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue