https://github.com/cran/spatstat
Raw File
Tip revision: 5d0edca8999a842af2ce258da8f917019ba84eb0 authored by Adrian Baddeley on 21 March 2011, 14:59:03 UTC
version 1.21-5.1
Tip revision: 5d0edca
compatible.fasp.Rd
\name{compatible.fasp}
\alias{compatible.fasp}
\title{Test Whether Two Function Arrays Are Compatible}
\description{
  Tests whether two function arrays (class \code{"fasp"})
  are compatible.
}
\usage{
  compatible.fasp(A, B)
}
\arguments{
  \item{A,B}{Function arrays (object of class \code{"fasp"}).}
}
\details{
  An object of class \code{"fasp"} can be regarded as an array
  of functions. Such objects are returned by the
  command \code{\link{alltypes}}.

  This function tests whether two such objects are compatible
  (so that, for example, they could be added or subtracted).
  
  The functions are compatible if the arrays have the same dimensions,
  and the corresponding functions in each cell of the array
  are compatible as defined by \code{\link{compatible.fv}}.
}
\value{
  Logical value: \code{TRUE} if the objects are compatible, and \code{FALSE}
  if they are not.
}

\author{Adrian Baddeley
  \email{Adrian.Baddeley@csiro.au}
  \url{http://www.maths.uwa.edu.au/~adrian/}
  and Rolf Turner
  \email{r.turner@auckland.ac.nz}
}
\keyword{spatial}
\keyword{manip}
back to top