search for: rockcluster

Displaying 2 results from an estimated 2 matches for "rockcluster".

2011 Jul 27
0
[Rocks-Discuss] Virtualizing RockCluster 5.3
...ing about my network is that its on a 255.255.254.0 subnet mask. I can reserve its ip and everything. On Tue, Jul 13, 2010 at 12:58 AM, Jon Forrest <jlforrest at berkeley.edu>wrote: > On 7/12/2010 9:02 PM, Poh Yang Ming wrote: > >> Hi! >> >> I am trying to virtualize Rockcluster 5.3 for various testing with >> limited hardware. I have manage to get the headnode up in qemu >> (fedora13, x86_64). However, I am experiencing some issue to connect >> the headnode to the compute node. >> >> Has anyone done virtualization of rockcluster with qemu or...
2008 Nov 08
1
Clustering and functions
...ggestions would be greatly appreciated. Here is the code: library(cba) d<-read.csv("data.csv", header=TRUE) v<-c(53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,21,72 73,74,75,76,77,78) clusterMe<-function(d,v){ tempMat<-subset(d,d[,v[1]]=="TRUE") rc<-rockCluster(tempMat,n=5,theta=.2) tempMat<-cbind(tempMat,rc$cl) M<-tempMat for (i in 2:26){ tempMat<-subset(d,d[,v[i]]=="TRUE") rc<-rockCluster(tempMat,n=5,theta=.2) tempMat<-cbind(tempMat,rc$cl) M<-rbind(M,tempMat) } M } clusters<-clusterMe(d,v) Bryan