search for: mbase

Displaying 5 results from an estimated 5 matches for "mbase".

Did you mean: base
2003 Feb 11
0
samba 2.2.7a and multiple logins...
...:09:30 2003 sek pr users 10697 pc26 (192.168.1.26) Tue Feb 11 08:33:46 2003 Locked files: Pid DenyMode Access R/W Oplock Name -------------------------------------------------------------- 6714 DENY_WRITE 0x20089 RDONLY EXCLUSIVE+BATCH /mbase/samba.mbnet/home/fm/profiles/fm/Recent/KO_Altdaten_neu6.zip.lnk Mon Feb 10 14:38:31 2003 10584 DENY_WRITE 0x20089 RDONLY EXCLUSIVE+BATCH /mbase/samba.mbnet/home/fm/profiles/fm/Anwendungsdaten/Microsoft/Office/Word.pip Tue Feb 11 08:05:05 2003 6714 DENY_WRITE 0x20089 RDONLY E...
2012 Jul 27
1
C code validation
...lt;- function(x, y) { + index <- 0 + while((index <- index + 1) < length(x)) { + x <- setdiff(x, findSubsets(y + 1, x[index], max(x))) + } + return(x) + } > > set.seed(12345) > exprnec <- sort(sample(13:19683, 500)) > noflevels <- rep(2, 9) > mbase <- rev(c(1, cumprod(rev(noflevels + 1))))[-1] > foo1 <- benchmark(exprnec, noflevels) > foo2 <- .Call("removeRedundants", exprnec, noflevels, mbase) > > all.equal(foo1, foo2) [1] "Numeric: lengths (184, 181) differ" > > > set.seed(12345) > exprne...
2003 May 09
1
Bug report: deletion of files only on remote system is not logged.
...updating: /etc/rsyncd.conf [439](H:root@Edelfelt)~MBhome/site: nonce_copy rsynctest updating host Tazdevil updating: /export/home/MBhome/site/rsynctest # Evidence that tazonly exists only on the remote system: [442](H:root@Edelfelt)~MBhome/site: rsh taz ls -l /usr/mb/site total 14 -rw-r----- 1 mbase mbadmin 205 Jan 27 09:24 MBvars.pl -rwxr-x--- 1 mbase mbadmin 36 Feb 28 09:59 con -rw-r----- 1 root other 0 May 1 14:37 newfile -rwxr-x--- 1 mbase mbadmin 1110 Apr 7 13:45 newstewpass -rwxr-x--- 1 mbase mbadmin 1747 May 6 14:23 rsynctest -rw-r-...
2007 Jan 21
2
multiple bases to decimal (was: comparing two matrices)
Hi again, I was contemplating the solution using base 3: set.seed(3) mat2 <- matrix(sample(0:2, 15, replace=T), 5, 3) Extracting the line numbers is simple: bases <- c(3, 3, 3)^(2:0) # or just 3^(2:0) colSums(apply(mat2, 1, function(x) x*bases)) + 1 [1] 7 23 25 8 1 The problem is sometimes the columns have different number of levels, as in: mat1 <- expand.grid(0:2, 0:2,
2007 Sep 16
1
programming question
...<- getRow(rep(3,5), element, zerobased=TRUE) increment <- function(x, y) { a <- x for (i in 1:2) { a <- as.vector(outer(y, a, "+")) x <- c(x, a) } return(x) } indices <- which(base3row == 0) mbase <- c(81, 27, 9, 3, 1) for (i in indices) { element <- increment(element, mbase[i]) } return(element[-1]) } position <- 1 while(position < length(myvec)) { falsevector <- findSubsets2(myvec[position]) myvec <- setdiff(myvec, falsevector) pos...