Last chance! 50% off unlimited learning
Sale ends in
Computes the side lengths of the (enclosing rectangle of) a window.
# S3 method for owin
sidelengths(x) # S3 method for owin
shortside(x)
A window whose side lengths will be computed.
Object of class "owin"
.
For sidelengths.owin
, a numeric vector of length 2
giving the side-lengths (shortside.owin
, a numeric value.
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.
shortside
, sidelengths
for the generic functions.
area.owin
,
diameter.owin
,
perimeter
for other geometric calculations on "owin"
objects.
# NOT RUN {
w <- owin(c(0,2),c(-1,3))
sidelengths(w)
shortside(as.rectangle(letterR))
# }
Run the code above in your browser using DataLab