search for: cond6

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

Did you mean: cond
2017 Jul 24
5
Ifelse statements and combining columns
...ave so far: dat$cond <- ifelse(test = dat$cond == "cond1" | dat$cond == "cond2" | dat$cond == "cond3" dat$cond == "cond4" yes = "Uniform" no = ifelse(test = dat$cond == "cond5" | dat$cond == "cond6") | dat$cond == "cond7" dat$cond == "cond8" yes = "Biased Low" no = "Biased High" ) I keep getting an error statement about an invalid ). I've tried several permutations to fix, but without luck. Also, can any...
2017 Jul 24
0
Ifelse statements and combining columns
...$cond <- ifelse(test = dat$cond == "cond1" | dat$cond == "cond2" | >dat$cond == "cond3" dat$cond == "cond4" > yes = "Uniform" > no = ifelse(test = dat$cond == "cond5" | dat$cond == >"cond6") | dat$cond == "cond7" dat$cond == "cond8" > yes = "Biased Low" > no = "Biased High" ) > > >I keep getting an error statement about an invalid ). I've tried >several >permutations to fix, but...
2017 May 21
4
Handling native i16 types in clang and opt
Hello. My target architecture supports natively 16 bit integers (i16). Whenever I write in C programs using only short types, clang compiles the program to LLVM and converts the i16 data to i32 to perform arithmetic operations and then truncates the results to i16. Then, the InstructionCombining (INSTCOMBINE or IC) pass removes these conversions back and forth from i16, except for