inci.matPE1D | R Documentation |
Returns the incidence matrix for the PE-PCD
for a given 1D numerical data set, Xp
,
as the vertices of the digraph
and Yp
determines the end points of the intervals (in the multi-interval case).
If there are duplicates of Yp
points,
only one point is retained for each duplicate value,
and a warning message is printed.
Loops are allowed, so the diagonal entries are all equal to 1.
PE proximity region is constructed
with an expansion parameter r \ge 1
and a centrality parameter c \in (0,1)
.
See also (\insertCiteceyhan:metrika-2012;textualpcds).
inci.matPE1D(Xp, Yp, r, c = 0.5)
Xp |
a set of 1D points which constitutes the vertices of the digraph. |
Yp |
a set of 1D points which constitutes the end points of the intervals that partition the real line. |
r |
A positive real number which serves as the expansion parameter in PE proximity region;
must be |
c |
A positive real number in |
Incidence matrix for the PE-PCD with vertices being 1D data set, Xp
,
and Yp
determines the end points of the intervals (in the multi-interval case)
Elvan Ceyhan
inci.matCS1D
, inci.matPEtri
, and inci.matPE
r<-2
c<-.4
a<-0; b<-10;
nx<-10; ny<-4
set.seed(1)
Xp<-runif(nx,a,b)
Yp<-runif(ny,a,b)
IM<-inci.matPE1D(Xp,Yp,r,c)
IM
dom.num.greedy(IM)
Idom.num.up.bnd(IM,6)
dom.num.exact(IM)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.