
Last chance! 50% off unlimited learning
Sale ends in
Given a measure A
(object of class "msr"
)
these functions find the positive part, negative part and variation
of A
.
measurePositive(x)
measureNegative(x)
measureVariation(x)
totalVariation(x)
A measure (object of class "msr"
).
The result of measurePositive
, measureNegative
and measureVariation
is another measure (object of class "msr"
)
on the same spatial domain.
The result of totalVariation
is a non-negative number.
The functions measurePositive
and measureNegative
return the positive and negative parts of the measure,
and measureVariation
returns the variation (sum of positive and
negative parts). The function totalVariation
returns the total
variation norm.
If -1
.
The variation
The total variation norm is the integral of the variation.
Halmos, P.R. (1950) Measure Theory. Van Nostrand.
# NOT RUN {
X <- rpoispp(function(x,y) { exp(3+3*x) })
fit <- ppm(X, ~x+y)
rp <- residuals(fit, type="pearson")
measurePositive(rp)
measureNegative(rp)
measureVariation(rp)
# total variation norm
totalVariation(rp)
# }
Run the code above in your browser using DataLab