ourMELONS/man/cell.Rd

25 lines
545 B
Text
Raw Normal View History

2020-06-24 16:07:13 +02:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cell.R
\name{cell}
\alias{cell}
\title{Cell array}
\usage{
2021-03-31 10:39:15 +02:00
cell(n, sz = c(n, n), expandable = FALSE, ...)
2020-06-24 16:07:13 +02:00
}
\arguments{
\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)}
2020-06-24 16:49:31 +02:00
2021-03-31 10:39:15 +02:00
\item{expandable}{if TRUE, output is a list (so it can take different
lengths)}
2020-06-24 16:49:31 +02:00
\item{...}{Other dimensions}
2020-06-24 16:07:13 +02:00
}
\value{
An array of zeroes with the dimensions passed on call
}
\description{
Creates an array of zeros
}