search for: mmat

Displaying 10 results from an estimated 10 matches for "mmat".

Did you mean: mmap
2006 Feb 14
1
rsync command: help with windows -> unix
...with basic usage. ------------------------------ My /etc/rsyncd.conf: log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock [antec_win2k_mike] path = /vol3/antec_win2k_mike uid = nobody gid = nobody read only = no list = yes auth users = mmat secrets file = /etc/rsync/rsyncd.secrets ------------------------------ /etc/rsync/rsyncd.secrets: ------------------------------ mmat:password1 ------------------------------ I have a local user 'mike' on the server with password 'password2'. When I run this command I get m...
2011 Sep 03
2
problem in applying function in data subset (with a level) - using plyr or other alternative are also welcome
...c(1, 2,3), 10, replace= T) M3b <- sample (c(1, 2,3), 10, replace= T) M3aP1 <- sample (c(1, 2,3), 10, replace= T) M3bP2 <- sample (c(1, 2,3), 10, replace= T) mydf <- data.frame (ped, M1a,M1b,M1aP1,M1bP2, M2a,M2b,M2aP1,M2bP2, M3a,M3b,M3aP1,M3bP2, y) # functions and further calculations mmat <- matrix (c("M1a","M2a","M3a","M1b","M2b","M3b","M1aP1","M2aP1","M3aP1", "M1bP2","M2bP2","M3bP2"), ncol = 4) # first function myfun <- function(x) { x<- as.vector(x) ot...
2008 Dec 17
1
non numeric argument to binary operator
hi i have a huge matrix and want to split it into 2. with the command %%2. but i get this warning message: *"Error in mmat%%2 : non-numeric argument to binary operator*" here's the bit from my matrix: V1 V2 [1,] "Affymetrix:CompositeSequence:ATH1-121501:244901_at" "2.653" [2,] "Affymetrix:CompositeSequence:ATH1-121501:244902_at"...
2007 Feb 14
0
environment confusion
...od profile, with the following situation: I want to evaluate "call": call mle2(minuslogl = function (lmu = NULL, ltheta = NULL) { if (!is.null(parameters)) { pars <- unlist(as.list(match.call())[-1]) for (i in seq(along = parameters)) { assign(vars[i], mmats[[i]] %*% pars[vpos[[i]]]) } } arglist1 <- lapply(arglist1, eval, envir = data, enclos = sys.frame(sys.nframe())) r <- -sum(do.call(ddistn, arglist1)) r }, start = list(lmu = -2.16316747342067, ltheta = 2.30970721353114), fixed = list(lmu = -2.18543734742826)) T...
2018 Mar 14
1
Documenting R package with Rd file
...ge. In my .Rd file (sixth line below), I have uhat<-m%*%y but when the package is built (successfully), the matrix multiplication part does not show up in the documentation. The line become (missing %*% y) uhat<-m === \examples{ x<-c(1,2,3,4,5) y<-c(1,1,2,2,4) x<-cbind(1,x) m<-mmat(x) uhat<-m%*%y dstat(uhat) } ?-- styen at ntu.edu.tw (S.T. Yen) [[alternative HTML version deleted]]
1998 Apr 17
2
R-beta: lmsreg
Does R have a function like the S(plus) function, lmsreg, Least Median of Squares Regression? I am using R-0.61. Thank you, Mike Fleming mfleming at nass.usda.gov -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
1998 Apr 17
2
R-beta: lmsreg
Does R have a function like the S(plus) function, lmsreg, Least Median of Squares Regression? I am using R-0.61. Thank you, Mike Fleming mfleming at nass.usda.gov -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
1999 Jan 25
1
Design matrix labels
If I have two factors A and B with levels '1','2','3' and '1','4','6','8' recpectively (note the gaps in the second one). As factors, the levels are named as above while of course the internal codes are (1,2,3) and (1,2,3,4) respectively. I want to make a design matrix of these as one would in a linear model except I can't use lm or glm
2009 Jul 21
1
problem with heatmap.2 in package gplots generating non-finite breaks
...quot; [29] "linecol" "lmat" "lwid" "main" [33] "margins" "max.breaks" "max.raw" "max.scale" [37] "min.breaks" "min.raw" "min.scale" "mmat" [41] "na.color" "na.rm" "nbr" "nc" [45] "ncol" "notecex" "notecol" "nr" [49] "op" "retval" "revC" "rm"...
2012 Apr 23
0
Solve an ordinary or generalized eigenvalue problem in R
...ts: > # AMAT ... p by q matrix > # BMAT ... order p symmetric positive definite matrix > # CMAT ... order q symmetric positive definite matrix > # Returns: > # VALUES ... vector of length s = min(p,q) of eigenvalues > # LMAT ... p by s matrix L > # MMAT ... q by s matrix M > > It's not clear to me how it is used and exactly what it is doing and how that compares with Lapack. > > Berend >