search for: xx9

Displaying 3 results from an estimated 3 matches for "xx9".

Did you mean: xx
2008 Aug 26
1
more dot plots on 1 page
...more ideas? What do I do wrong? species.vector<-c("Lp","Pp","Pl","Ra","Lc","Ml") for(i in 1:6){ XXXX<- inputdot[inputdot$sp_==species.vector[i],] str(XXXX) XX7<-subset(XXXX,chamber==7) XX8<-subset(XXXX,chamber==8) XX9<-subset(XXXX,chamber==9) XX10<-subset(XXXX,chamber==10) species.vector[i] <- dotplot(XX7$BG_dry~XX7$stress,ylim=c(0,20),ylab="biomass",scales=list(ti ck.number=10), panel = function (x, y) { panel.abline(v=c(1:8),lty=2,col="gray") panel.xyplot(x, y, pch = 1, c...
2009 Oct 05
1
gsub - replace multiple occurences with different strings
Hi, I search a way to replace multiple occurrences of a string with different strings depending on the place where it occurs. I tried the following; x <- c("xx y e d xx e t f xx e f xx") x <- gsub("xx", c("x1", "x2", "x3", "x4"), x) what I want to get is; x = x1 y y e d x2 e t f x3 e f x4 but what I get is; x = x1 y y e
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...ction body below... + */ +# define X(i) XX##i + +static void HASH_BLOCK_DATA_ORDER(SHA_CTX *c, const void *p, size_t num) +{ + const unsigned char *data = p; + register unsigned MD32_REG_T A, B, C, D, E, T, l; + unsigned MD32_REG_T XX0, XX1, XX2, XX3, XX4, XX5, XX6, XX7, + XX8, XX9, XX10, XX11, XX12, XX13, XX14, XX15; + + A = c->h0; + B = c->h1; + C = c->h2; + D = c->h3; + E = c->h4; + + for (;;) { + const union { + long one; + char little; + } is_endian = { + 1 + }; + + if (!is_endi...