Computation of the kernel that compares fields of two molecules

cmf_kernel(ft, mol1, mol2, alpha)

Arguments

ft

mol1

mol2

alpha

Details

Value

References

Note

See also

Examples

##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function(ft, mol1, mol2, alpha) { natoms1 <- length(mol1$atoms) natoms2 <- length(mol2$atoms) atomlist1 <- 1:natoms1 atomlist2 <- 1:natoms2 cmf_kernel_al(ft, mol1, mol2, alpha, atomlist1, atomlist2) }
#> function(ft, mol1, mol2, alpha) { #> natoms1 <- length(mol1$atoms) #> natoms2 <- length(mol2$atoms) #> atomlist1 <- 1:natoms1 #> atomlist2 <- 1:natoms2 #> cmf_kernel_al(ft, mol1, mol2, alpha, atomlist1, atomlist2) #> } #> <environment: 0x10ff3f388>