Description Usage Arguments Value Author(s) Examples
View source: R/checkingGramSimilarityMatrix.R
Function to check if a similarity matrix is Gram or not
| 1 | checking.gram.similarityMatrix(W, flagDiagZero = FALSE, verbose = FALSE)
 | 
| W | Gram Similarity Matrix or not. | 
| flagDiagZero | if True, Put zero on the similarity matrix W. | 
| verbose | To output the verbose in the terminal. | 
a Gram similarity matrix
Emilie Poisson Caillault and Erwan Vincent
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ### Example 1: 2 disks of the same size
n<-100 ; r1<-1
x<-(runif(n)-0.5)*2;
y<-(runif(n)-0.5)*2
keep1<-which((x*2+y*2)<(r1*2))
disk1<-data.frame(x+3*r1,y)[keep1,]
disk2 <-data.frame(x-3*r1,y)[keep1,]
sameTwoDisks <- rbind(disk1,disk2)
W <- compute.similarity.ZP(scale(sameTwoDisks))
W <- checking.gram.similarityMatrix(W)
### Example 2: Speed and Stopping Distances of Cars
W <- compute.similarity.ZP(scale(cars))
W <- checking.gram.similarityMatrix(W)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.