sidelengths.owin | R Documentation |
Computes the side lengths of the (enclosing rectangle of) a window.
## S3 method for class 'owin'
sidelengths(x)
## S3 method for class 'owin'
shortside(x)
x |
A window whose side lengths will be computed.
Object of class |
The functions shortside
and sidelengths
are generic.
The functions documented here are the methods for the class "owin"
.
sidelengths.owin
computes the
side-lengths of the enclosing rectangle of the window x
.
For safety, both functions give a warning if the window is not a rectangle.
To suppress the warning, first convert the window to a rectangle
using as.rectangle
.
shortside.owin
computes the minimum of the two side-lengths.
For sidelengths.owin
, a numeric vector of length 2
giving the side-lengths (x
then y
) of the enclosing rectangle.
For shortside.owin
, a numeric value.
and \rolf
shortside
, sidelengths
for the generic functions.
area.owin
,
diameter.owin
,
perimeter
for other geometric calculations on "owin"
objects.
owin
,
as.owin
.
w <- owin(c(0,2),c(-1,3))
sidelengths(w)
shortside(as.rectangle(letterR))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.