search for: a_b_c

Displaying 7 results from an estimated 7 matches for "a_b_c".

Did you mean: a_b_d
2015 Aug 28
2
RFC: alloca -- specify rounding factor for allocation (and more)
...is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # types.h # a_b.c # a_b_c.c # main.c # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' XCFLAGS=-g -O3 -DNDEBUG X X Xall: reuse noreuse X Xa_b1.o: a_b.c X $(CC) $(CFLAGS) -c -o $@ -DREUSE=0 $+ X Xa_b2.o: a_b.c X $(CC) $(CFLAGS) -c -o $@ -DREUSE=1 $+ X Xnoreuse: a_b1.o a_b_c.o main.o X $...
2015 Jul 02
4
boot... round 2
On 02.07.2015 01:28, Gene Cumm wrote: > On Wed, Jul 1, 2015 at 10:14 AM, poma <pomidorabelisima at gmail.com> wrote: >> On 01.07.2015 12:10, Gene Cumm wrote: >>> On Wed, Jul 1, 2015 at 4:35 AM, poma <pomidorabelisima at gmail.com> wrote: >>>> >>>> To remind you once again. >>>> ISOLINUX >= 6.00 built with GCC >= 5.0.0 causes a
2015 Jul 02
0
boot... round 2
...pace to '_', condense groups of neighboring whitespaces to a single '_', discard leading and trailing whitespace. In its current git state it converts "abc" -> "abc" " abc " -> "abc" " a b c " -> "a_b_c" The change to (c <= " " && c == "\x7f") disables this conversion completely. " a b c " -> " a b c " It seems your use case needs the whitespaces whereas SYSLINUX assumes that they are unwanted. This collision of need and software...
2007 Jan 23
0
error in arules package
Hi, we noticed there was a error in the "arules" package. After reading the source code, we saw that the Dice similarity index was "miscalculated" in "dissimilarity" function : an copy-paste from Jaccard Index was not corrected (2* a_b_c, ie 2*(a+b+c) in the code instead of 2*a +b + c !!!). After our mail to R-help (21/11/2006), we thought the authors could do something but I just try the function and the error is still there. I hope the authors will read my mail. Sincerely yours, Fred. -- Dr. Fr?d?ric Chiroleu Biom?tricien...
2015 Jul 02
1
boot... round 2
...s of neighboring whitespaces to a single '_', > discard leading and trailing whitespace. > > In its current git state it converts > > "abc" -> "abc" > " abc " -> "abc" > " a b c " -> "a_b_c" > > The change to > (c <= " " && c == "\x7f") > disables this conversion completely. > " a b c " -> " a b c " > > > It seems your use case needs the whitespaces whereas SYSLINUX > assumes that they are u...
2016 Apr 28
2
Combinaciones sin repetición...con restricciones
...lo: > > > set_examp <- c('a','b','c','d') > > my_choice(set_examp, 'a', 'b') > [1] "a" "b" "a_b" "a_c" "a_d" "b_c" "b_d" > "a_b_c" > [9] "a_b_d" "a_c_d" "b_c_d" "a_b_c_d" > > La función calcula todas las combinaciones sin repetición posibles y > extrae los elementos donde están presentes "cual_1" y "cual_2". No está > preparada para que pue...
2016 Apr 27
4
Combinaciones sin repetición...con restricciones
Hola, tengo que resolver un problema para el que normalmente utilizaría excel, pero me gustaría intentar resolverlo con R. Se trata de lo siguiente: Tengo tres elementos: a, b y c. Dichos elementos están agrupados en siete objetos, producto de todas las combinaciones sin repetición posibles: Objeto 1: a Objeto 2: b Objeto 3: c Objeto 4: a y b Objeto 5: a y c Objeto 6: b y c Objeto 7: a, b y c