search for: condition3

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

Did you mean: conditions
2010 May 20
1
Mixed Effects Model on Within-Subjects Design
...0 p_value = .... condition1:diff25 vs. condition1:diff75 p_value = .... condition1:diff50 vs. condition1:diff75 p_value = .... condition2:diff25 vs. condition1:diff50 p_value = .... condition2:diff25 vs. condition1:diff75 p_value = .... condition2:diff50 vs. condition1:diff75 p_value = .... condition3:diff25 vs. condition1:diff50 p_value = .... condition3:diff25 vs. condition1:diff75 p_value = .... condition3:diff50 vs. condition1:diff75 p_value = .... condition*diff p_value = .... Here is my code: #get the data study.data =read.csv("http://files.davidderiso.com/example_data.csv&qu...
2011 Dec 13
1
[LLVMdev] Changing the operands in the CallInst
I implement the following function,which gets CallInst * and should perform the following: 1. Change the value of the argument if condition1 takes place 2. Change the type of the argument if condition2 takes place 3. Add addition argument/s if condition3 takes place void argChange(CallInst * I) { for (unsigned index = 0; index < I->getNumOperands(); ++index) { do_something_with (I->getOperand(index),condition); } } I think that the 1. can be implemented using I->setOperand(index,newValue) Can anyone advice me how 2. &am...
2007 Apr 04
4
Some advanced filtering questions
Hi All, I need to do some tricky filtering stuff. Can anyone tell me if any of the following are possible? * match on a combination of firewall mark AND u32 criteria. ie. handle 6 fw AND u32 match ip src 1.2.3.4/32 - to match packets from 1.2.3.4 which have been marked elsewhere OR * to OR the values of u32 matches. Something like u32 match ip src 1.2.3.4/32 OR match ip dst 1.2.3.4/32 - to