search for: aab

Displaying 20 results from an estimated 98 matches for "aab".

Did you mean: aaab
2010 Mar 05
1
About the interaction A:B
...s coefficients for (intercept), Ab, Ac (there are no NA's), I think that it is reasonable to make sure that there are no NA's when there are interaction terms, namely, A:B in this case. Thank you for answering my questions! > alm=lm(Y ~ A*B,fr) > alm$coefficients (Intercept) AAb AAc BBb BBc BBd -3.548176 -2.086586 7.003857 4.367800 11.887356 -3.470840 AAb:BBb AAc:BBb AAb:BBc AAc:BBc AAb:BBd AAc:BBd 5.160865 -11.858425 -12.853116 -20.289611 6.727401 -2.327173 > > alm=lm(Y ~ A + B + A:B,fr) &...
2015 Oct 25
2
[compiler-rt] Undefined negation in float emulation functions
...ew Fernandez via llvm-dev <llvm-dev at lists.llvm.org> wrote: >>> On 21/10/15 00:15, Stephen Canon wrote: >>> Yup, this is UB. If you want to propose a patch, I would do something like the following: >>> >>> rep_t sign = 0; >>> unsigned int aAbs = a; >>> if (a < 0) { >>> sign = signBit; >>> aAbs = -aAbs; >>> } >>> // Now use aAbs instead of a. > > FWIW, another way to avoid the UB is to use an unsigned value. I'm confused, that's exactly what this does....
2015 Oct 24
2
[compiler-rt] Undefined negation in float emulation functions
...said please let me know. And to think this was just supposed to be a quick afternoon tinkering with LLVM for me ;) On 21/10/15 00:15, Stephen Canon wrote: > Yup, this is UB. If you want to propose a patch, I would do something like the following: > > rep_t sign = 0; > unsigned int aAbs = a; > if (a < 0) { > sign = signBit; > aAbs = -aAbs; > } > // Now use aAbs instead of a. > > – Steve > >> On Oct 20, 2015, at 6:38 AM, Matthew Fernandez via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> >> Hi, >> >> I recentl...
2008 Sep 07
2
restructuring datset problem
...a question regarding the restructering of a data set. What I have are municipality zip-codes and the names of 5'000 built-up areas within municipalities. The following example shows, what I would like to do: Input (Zip-Codes and Names): # CODE NAME #1 3 aaa #2 3 aab #3 3 aac #4 4 bba #5 4 bbb #6 4 bbc #7 4 bbd #8 5 cca #9 5 ccb Desired Output (Zip-Codes and restructured names) # CODE V2 V3 V4 V5 #1 3 aaa aab aac NA #2 4 bba bbb bbc bbd #3 5 cca ccb...
2015 Oct 25
2
[compiler-rt] Undefined negation in float emulation functions
...lists.llvm.org> wrote: >>>>> On 21/10/15 00:15, Stephen Canon wrote: >>>>> Yup, this is UB. If you want to propose a patch, I would do something like the following: >>>>> >>>>> rep_t sign = 0; >>>>> unsigned int aAbs = a; >>>>> if (a < 0) { >>>>> sign = signBit; >>>>> aAbs = -aAbs; >>>>> } >>>>> // Now use aAbs instead of a. >>> >>> FWIW, another way to avoid the UB is to use an unsigned...
2011 Jun 14
2
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213 aab at purdue.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #2021|0 |1 is obsolete| | --- Comment #34 from aab at purdue.edu 20...
2015 Oct 20
2
[compiler-rt] Undefined negation in float emulation functions
Hi, I recently came across the following in __floatsidf in compiler-rt: __floatsidf(int a) { ... if (a < 0) { ... a = -a; In the case where a == INT_MIN, is this negation not undefined behaviour? AIUI this function is used for software emulation on targets that have no hardware floating point support. Perhaps there is an in-built assumption
2012 Dec 03
3
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213 --- Comment #43 from Daniel Richard G. <skunk at iSKUNK.ORG> --- And a year later, this issue still afflicts OpenSSH 6.1p1 (as packaged by Ubuntu). Aab's patch still applies, if fuzzily, and still hardens up ssh-keyscan so that it can deal with my company's network. -- You are receiving this mail because: You are watching the assignee of the bug.
2011 Mar 18
2
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213 aab at purdue.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #2008|0 |1 is obsolete| | --- Comment #31 from aab at purdue.edu 20...
2006 Apr 16
1
string vector indices
Hi, I have a string vector, say, x <- "a", "aab" and anther string vector, say, y <- "a", "aa", "aab", "aabc". Is there any R function to get the indices of y for the elements of x, that is, foo(x, y) will give me the index vector c(1, 3)? I know i can combine apply() and grep("^aab$",...
2010 Nov 23
2
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213 --- Comment #3 from aab at purdue.edu 2010-11-23 12:00:50 EST --- Created attachment 1961 --> https://bugzilla.mindrot.org/attachment.cgi?id=1961 One attempt at getting the rsa key from a remote server that was having a number of problems. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email -...
2011 May 07
3
how to not match partial names
...sult <- x$BBBB} else {result <- x$A} result #partial matches and returns aaaa x <- list(ABC="abc", BBBBB="bbbbb",AA="aaaa") if(is.null(x$A)) {result <- x$BBBB} else {result <- x$A} result #can not partial match, and thus returns bbbb x <- list(AAB="aab", BBBBB="bbbbb",AA="aaaa") if(is.null(x$A)) {result <- x$BBBB} else {result <- x$A} result #also can not partial match My need for this is that I have several functions that return lists and I am trying to extract AAAA if it exists, but something else if...
2011 Feb 17
24
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213 Andreas Kotes <count-mindrot at flatline.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |count-mindrot at flatline.de Severity|normal |major --- Comment #6 from
2012 May 12
1
categorical analysis - grouping rows
...es dept and success, col name success. So I get something that looks like this: Term 1st 2nd 3rd 4th 5th dept success AAA 0 155 240 163 286 293 1 424 570 349 582 429 AAB 0 55 64 103 46 109 1 122 117 145 112 145 AAC 0 11 3 4 4 4 1 19 12 23 11 7 How can I calculate percentages by dept so that I get AAA 0...
2018 Nov 30
2
Asterisk non-root - selinux - astdb
...terisk certified/13.21-cert3 [root at sv03 asterisk]# ls -lahZ /var/lib/asterisk/astdb.sqlite3 -rw-r-----. asterisk asterisk unconfined_u:object_r:asterisk_var_lib_t:s0 /var/lib/asterisk/astdb.sqlite3 Can anyone help? Thanks. Rafael S. Saraiva <http://br.linkedin.com/pub/rafael-saraiva/52/aab/230> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20181130/451419f7/attachment.html>
2013 Sep 24
5
Service refresh gets scheduled and swp files
Hi, I have two issues with my puppet. *1*- When I change the config the service on the agent side implement the configuration change but the restart/reload gets scheduled and after 15 or 20 minutes it is executed, however the agent time to get conffig from server is 180 seconds. Followings are the logs *(/Stage[main]/Nginx/Service[nginx]) Triggered ''refresh'' from 2 events*
2015 May 12
1
AEL keyword IfTime with variable on time range
...3]: pbx_ael.c:197 pbx_load_module: Sorry, but 1 syntax errors and 0 semantic errors were detected. It doesn't make sense to compile. [image: Sua Foto] <rafaelsnsa at gmail.com>Rafael S. SaraivaPorto Alegre - RS | Mobile: (51) 8174-7956 <http://br.linkedin.com/pub/rafael-saraiva/52/aab/230> <https://plus.google.com/u/0/+RafaelSaraivaRS> 2015-05-12 13:51 GMT-03:00 Tech Support <asterisk at voipbusiness.us>: > You should try it and find out if it works. If it does, let us know. > > Regards; > > John > > > > *From:* asterisk-users-bounces...
2011 Nov 02
0
[LLVMdev] Issues in compiler-rt __truncdfsf2 and __extendsfdf2 functions?
...ning TestFloat [1] on our core. The first issue is in __truncdfsf2. __truncdfsf2(0x1p+128) produces 0x1p-128, while the expected result is inf. __truncdfsf2(-0x1p+128) produces -0x1p-128, while the expected result is -inf. I think the condition of the else if on line 137 of truncdfsf2.c should be (aAbs >= overflow) instead of the current (aAbs > overflow) because overflow is 0x1p+128 which cannot be represented as a float. Changing the condition to (aAbs >= overflow) fixes this issue. The attached patch does this. The second issue is in how __extendsfdf2 handles signaling NaNs. Current...
2012 Apr 24
2
Basic matrix manipulation problem
...ables. What function will I need to use to do the following. Move matrix a: A B C D x 1 2 3 4 y 5 6 7 8 to the mean of B&C and C&D: BC CD x 2.5 3.5 y 6.5 7.5 and then to the mean of B&CB, C&BC, C&CD, and D&CD: AAB BAB CCD DCD x 1.75 2.25 3.25 3.75 y 6.25 6.75 7.25 7.75 Thanks again for any help. I'm putting in some good time after work trying to learn this language and any help would be great. -- View this message in context: http://r.789695.n4.nabble.com/Basic-matrix-manipulation-problem-t...
2008 Aug 31
4
give all combinations
Hello,   is there a simple way to give all combinations for a given vector:   v<-c("a","b","c")   combination(v,v) becomes "aa","ab","ac","bb","bc","cc'   combination(v,v,v) becomes "aaa","aab","aac","abb",......     [[alternative HTML version deleted]]