Displaying 1 result from an estimated 1 matches for "dha_tnh".
2010 Mar 31
2
Generative Topographic Map
...ter documented.
I had a look at the R demo code "gtm_demo" and found that variable Y is used in advanced of being created:
I wrote my own few lines as follows:
inDir <- "C:/Documents and Settings/Monville/Alanine Dipeptide/DBP1/DHA"
setwd(inDir)
T <- read.table("DHA_TNH.txt")
L <- 3
X <- matrix(nrow=nrow(T),ncol=3,byrow=TRUE)
MU <- matrix(nrow=round(nrow(T)/5), ncol=L)
for(i in 1:ncol(X)) {
for(j in 1:nrow(X)) {
X[j,i] <- RANDU()
}
}
for(i in 1:ncol(MU)) {
for(j in 1:nrow(MU)) {
MU[j,i] <- RANDU()
}
}
sigma <...