https://github.com/cran/pracma
Raw File
Tip revision: c79a04b5074656b36e591191eb8137b70a349932 authored by Hans W. Borchers on 30 June 2014, 00:00:00 UTC
version 1.7.0
Tip revision: c79a04b
size.Rd
\name{size}
\alias{size}
\title{Size of Matrix}
\description{
  Provides the dimensions of \code{x}.
}
\usage{
size(x, k)
}
\arguments{
  \item{x}{vector, matrix, or array}
  \item{k}{integer specifying a particular dimension}
}
\details{
  Returns the number of dimensions as \code{length(x)}.

  Vector will be treated as a single row matrix.
}
\value{
  vector containing the dimensions of \code{x}, or the \code{k}-th dimension
  if \code{k} is not missing.
}
\note{
  The result will differ from Matlab when \code{x} is a character vector.
}
\seealso{
\code{\link[base]{dim}}
}
\examples{
size(1:8)
size(matrix(1:8, 2, 4))		# 2 4
size(matrix(1:8, 2, 4), 2)	# 4
size(matrix(1:8, 2, 4), 3)	# 1
}
\keyword{array}

back to top