unify.owin {spagmix} | R Documentation |
Rescales any owin
to fall inside the unit square.
unify.owin(W)
W |
An object of class |
This function is a simple wrapper for affine
deployed to rescale a supplied owin
to fall inside the unit square.
The rescaled owin
.
W <- Window(chorley)
U <- unify.owin(W)
oldpar <- par(mfrow=c(1,2))
plot(W,axes=TRUE)
plot(U,axes=TRUE)
par(oldpar)