centerMc {pcds} | R Documentation |
Parameterized center of an interval
Description
Returns the (parameterized) center, ,
of the interval,
int
,
parameterized by
so that
% of the length of interval is to the left of
and
% of the length of the interval
is to the right of
.
That is, for the interval,
int
,
the parameterized center is
.
See also (Ceyhan (2012, 2016)).
Usage
centerMc(int, c = 0.5)
Arguments
int |
A |
c |
A positive real number in |
Value
(parameterized) center inside int
Author(s)
Elvan Ceyhan
References
Ceyhan E (2012).
“The Distribution of the Relative Arc Density of a Family of Interval Catch Digraph Based on Uniform Data.”
Metrika, 75(6), 761-793.
Ceyhan E (2016).
“Density of a Random Interval Catch Digraph Family and its Use for Testing Uniformity.”
REVSTAT, 14(4), 349-394.
See Also
Examples
c<-.4
a<-0; b<-10
int = c(a,b)
centerMc(int,c)
c<-.3
a<-2; b<-4; int<-c(a,b)
centerMc(int,c)