search for: myc

Displaying 17 results from an estimated 17 matches for "myc".

Did you mean: mic
2009 Jan 29
4
Text in a character vector to indicate "ifelse" argument
...090432 R?d SPF 39 2000-01-01 090432 SPF-X, PRRS-neg. 40 1999-05-01 090432 MS-X, PRRS-neg. 81 2001-08-23 022458 R?d SPF 82 1999-01-22 022458 SPF-X, PRRS-neg. 130 2008-10-16 080385 R?d SPF+Myc+Ap2+Nys+DK+Vac 131 2003-03-18 080385 R?d SPF+Myc+Ap2+DK+Vac 132 2002-11-01 080385 R?d SPF+Myc+DK+Vac 133 2002-02-07 080385 R?d SPF+Myc+Vac 134 2000-09-19 080385 MS-X, PRRS-pos VAC 135 1999-01-22 080385 MS-X, PRRS-neg...
2012 Feb 06
1
Segfault on ".C" registration via R_CMethodDef according to 'Writing R Extensions'.
...t, inout or irrelevant). According to the manual 'Writing R Extensions' of version 2.14.1 an example is given that specifies to use the fourth field (type information) for definitions of C routines that use the ".C" calling convention: R_CMethodDef cMethods[] = { {"myC", (DL_FUNC) &myC, 4, {REALSXP, INTSXP, STRSXP, LGLSXP}}, /* segfault! */ {NULL, NULL, 0} }; If I follow this example I get compiler warnings or errors (whether I use C or C++, respectively) and a segmentation fault (in the case of C) when doing R CMD INSTALL, which seem to happen...
2008 Jan 13
4
For Loop performance
.... } } This for-loop is too slow (it takes a good 5 minutes on my Windows machine) to finish processing the vector V1 of 16,000; I will need to process a lot more than 16,000 (about 300*16,000). Is there a better way to do looping with R? Any help is greatly appreciate --MyC. [[alternative HTML version deleted]]
2012 Jul 02
0
Fit circle with R
...,ylim=c(-10,20),asp=1) # real circle draw.circle(x_c,y_c,radius=10,border="black") points(x_c,y_c,,pch=4,col="black") CPrat <- CircleFitByPratt(xs,ys) draw.circle(CPrat[1],CPrat[2],radius=CPrat[3],border="blue") points(CPrat[1],CPrat[2],pch=4,col="blue") MyC <- fitCircle(xs,ys) draw.circle(MyC[1],MyC[2],radius=MyC[3],border="green") points(MyC[1],MyC[2],pch=4,col="green") # Select less points points(xs[20:49],ys[20:49]) MyC1 <- fitCircle(xs[20:49],ys[20:49]) draw.circle(MyC1[1],MyC1[2],radius=MyC1[3],border="blue"...
2006 May 11
2
S4 initialize methods, unexpected recursive callNextMethod
...lt;- .Object at a + .Object at b + 1 .Object }) ## Works as I am expecting for B > myB <- new("B", 4) in B in A ## When you create a C, the B method gets called but the appropriate ## next method info seems lost and we end up back in C's method ?! > myC <- new("C", 5) in C in B in C in B in C C-c C-c Should this work? Is there a better way to organize the initializers for a simple hierarchy (perhaps assume that args to the initializers are not the same for A, B, and C). Thanks, + seth
2011 May 11
2
IMAP message ID bad for very old message
...ID 11441 from 2009 where it definitely shouldn't be, its all mixed in with emails from 2011 there. Info from LDAP is: * 11441 FETCH (FLAGS (\Answered \Seen) INTERNALDATE "27-Mar-2009 09:14:10 +0000" RFC822.SIZE 5772 ENVELOPE ("Fri, 27 Mar 2009 09:15:09 -0000" "MyC IP on CBL" (("Patrick XXXXXXXX- XXXXXXXX" NIL "patrick" "XXXXXXXX.co.uk")) (("Patrick XXXXXX- XXXXXXXX" NIL "patrick" "XXXXXXX.co.uk")) (("Patrick xxxxxx - xxxxxxx" NIL "patrick" "XXXXXXXX.co.uk"))...
2010 Apr 08
1
incomplete final line found by readTableHeader
Hi I am trying this > x <- read.table("/home/kenji/1245/GDS1_2grps_.cls", header = F, skip = 2) > x <- read.table("/home/kenji/1246/MYCset.cls", header = F, skip = 2) Warning message: In read.table("/home/kenji/1246/MYCset.cls", header = F, skip = 2) : incomplete final line found by readTableHeader on '/home/kenji/1246/MYCset.cls' Here are the hex's kenji at Yule:~$ hd 1245/GDS1_2grps_.cls 00000000 3...
2018 Feb 02
1
R-gui sessions end when executing C-code
...Files\R\R-3.3.3\bin\x64\Rgui.exe Faulting module path: C:\Program Files\R\R-3.3.3\bin\x64\R.dll Report Id: c78d7c52-72c5-40f3-a3cc-927323d2af07 Faulting package full name: Faulting package-relative application ID: ####### How I call the C-function in R dyn.load("C://users//jeshyb//desktop//myC//lce_fixpoint_cc.dll") N = 10 H = 3 v <- rnorm(N*H) mu <- 0.1 psi <- matrix(c(1,0,0.5,0.5,0,1),nrow=2) K <- dim(psi)[1] p <- rep(1/H,N*H) error <- 1e-10 f<-function(p,v,mu,psi,N,H,K) { .Ca...
2008 Feb 06
0
kruskal's MONANOVA algorithm
...ird results when i choose k=4. Here is my acepackage code and isoMDS function: X <- cbind(Brand, Price, Life, Hazard) # independent variables Y <- Rank # response variable cate <- as.vector(c(1,2,3,4)) # categorical variables(columns) in X mycon <- avas(x=X, y=Y, cat=cate) mymatrix <- as.matrix((X) row.names(mymatrix) <- Rank Any help is well appreciated. Thanks. myc <- isoMDS(dist(mymatrix), k=?) [[alternative HTML version deleted]]
2009 Feb 13
2
extracting parts of words or extraxting letter to use in ifelse-func.
Hello I want to make some variables with the ifelse-function, but i don't know how to do it. I want to make these five variables; b2$PRRSvac <- ifelse(b2$status=='A' | b2$status=='Aa',1,0) b2$PRRSdk <- ifelse(b2$status=='B' | b2$status=='Bb',1,0) b2$sanVac <- ifelse(b2$status=='C' | b2$status=='sanAa',1,0) b2$sanDk <-
2019 Jun 21
0
DLZ Backend DNS Hosed
...[mailto:samba-bounces at lists.samba.org] Namens > Denis Cardon via samba > Verzonden: vrijdag 21 juni 2019 10:30 > Aan: Matthew Delfino; samba at lists.samba.org > Onderwerp: Re: [Samba] DLZ Backend DNS Hosed > > Hi Matthew, > > > # samba-tool dns add localhost samdom.mycompany.net > samdom.mycompany.net NS umbriel.samdom.mycompany.net -U"Administrator" > > Password for [ORBITAL\Administrator]: > > ERROR(runtime): uncaught exception - (1383, > 'WERR_INTERNAL_DB_ERROR') > > File > "/usr/lib/python3/dist-packages/...
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems
2019 Jun 21
1
DLZ Backend DNS Hosed
...ion. After updating my /etc/network/interfaces to put my localhost IP address first (192.168.3.201, for example), saving, restarting services, rebooting, running "samba_upgradedns --dns-backend=BIND9_DLZ", saving, rebooting, etc., I still cannot add, edit or remove records from the samdom.mycompany.net zone. # samba_dnsupdate --verbose IPs: ['192.168.3.201'] Looking for DNS entry A umbriel.samdom.mycompany.net 192.168.3.201 as umbriel.samdom.mycompany.net. Looking for DNS entry NS samdom.mycompany.net umbriel.samdom.mycompany.net as samdom.mycompany.net. Traceback (most recen...
2009 Dec 17
2
some help regarding combining columns from different files
Dear all, Here is my code which am using to combine 5th column from different data sets. Here is the function to do my job genesymbol.append.file <-NULL gene.column <- NULL readGeneSymbol <- function(files,genesymbol.column=5){ for(i in fnames){ temp <- read.table(fnames,header=T,sep="\t",stringsAsFactors=F,quote="\"")
2019 Jun 20
4
DLZ Backend DNS Hosed
...n my network. There was no point in having them in Samba AD, so I deleted the zones in Windows DNS Manager and created slaves in my named.conf.local folder, so that they'd pull the records from my authoritative BIND DNS server, which runs on good old fashioned flat files (the SOA for zones like mycompany.net and the PTR zones for all my subnets). I'm now down to two zones: Able to be edited: _msdcs.samdom.mycompany.net NOT able to be edited:?samdom.mycompany.net I believe these two zones to be the bare minimum I need to have everything working correctly. Closer inspection shows that...
2004 Jul 28
3
[LLVMdev] Compiler Driver Requrements & Design (Comments Solicited!)
...t will (eventually) be the main touch point for users of LLVM. The name has not been settled, but a few have been suggested: 9iron - as in a golf driver lcd - LLVM Compiler Driver ccd - Configurable Compiler Driver ngc - Next Generation Compiler llvm - essentially, the gateway to LLVM based tools. myc - My Compiler These were contributed by Reid, Chris and Misha. If you have thoughts on this, please voice them! 4. SIMILAR OPTIONS AS GCC ========================= Certain common GCC options should be supported in order to make the driver appear familiar to users of GCC. In particular, the follo...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking