-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
62 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
CHANGES IN spatstat.utils VERSION 3.0-4.004 | ||
CHANGES IN spatstat.utils VERSION 3.0-4.005 | ||
|
||
OVERVIEW | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
\name{evenly.spaced} | ||
\alias{evenly.spaced} | ||
\title{ | ||
Determine Whether a Vector is Evenly Spaced and Increasing | ||
} | ||
\description{ | ||
Determines whether the entries in a numeric vector are evenly spaced | ||
and increasing. | ||
} | ||
\usage{ | ||
evenly.spaced(x, tol = 1e-07) | ||
} | ||
\arguments{ | ||
\item{x}{ | ||
Numeric vector. | ||
} | ||
\item{tol}{ | ||
Relative tolerance. | ||
} | ||
} | ||
\details{ | ||
The result is \code{TRUE} if \code{x} is an increasing sequence | ||
in which the successive differences \code{diff(x)} | ||
are all equal to one another (within the specified relative tolerance), | ||
and \code{FALSE} otherwise. | ||
} | ||
\value{ | ||
A single logical value. | ||
} | ||
\author{ | ||
\adrian. | ||
} | ||
\examples{ | ||
evenly.spaced(seq(0, 1, length=4)) | ||
} | ||
\keyword{manip} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
\name{spatstat.utils-deprecated} | ||
\title{Deprecated Functions of spatstat.utils Package} | ||
\alias{spatstat.utils-deprecated} %DoNotExport | ||
\alias{equispaced} | ||
\description{ | ||
Deprecated functions of the \code{spatstat.utils} package. | ||
} | ||
\usage{ | ||
equispaced(z, reltol=0.001) | ||
} | ||
\arguments{ | ||
\item{z}{Numeric vector.} | ||
\item{reltol}{Numeric value for relative tolerance.} | ||
} | ||
\details{ | ||
\code{equispaced} has been replaced by \code{\link{evenly.spaced}}. | ||
} | ||
\keyword{deprecated} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters