search for: dissagree

Displaying 2 results from an estimated 2 matches for "dissagree".

Did you mean: disagree
2011 Aug 26
2
[Bug 680] Packets disappear after NAT on 2nd gateway
...fault route. I tried marking this nat'ed service's packets with --set-mark > and creating a rule (with ip rule add) to match them and use a special routing > table for them, but it doesn't work. > Despite the priority this issue receives and when or if it will be solved, I > dissagree to consider it "an enhacement", as there isn't a way of implementing > the same functionality in an alternative way. I set up a server to search for the bug. The problem is definitely in the ipv4 Large Receive Offload. This is what I did: untarred 2.6.29 patched to 2.6.30-rc5 I c...
2005 Nov 10
7
different functions on different vector subsets
Hi, I am trying to apply two different functions on on a vector as follow: a<-c(NA,1,2,3,-3,-4,-6) if a>0 I would like to raise it by the power of 2: 2^a and if the a<0 I would like to have the inverse value, i.e., -1/2^a. so I thought of doing it two steps: a[a>0]<-2^[a>0] a[a<0]<-(-1)/2^a[a<0] I got the following error Error: NAs are not allowed in subscripted