search for: myout

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

Did you mean: yout
2004 Aug 04
5
Asterisk QOS working perfect using sveasoft 3.11g
...UPLINK_1_C=${UPLINK} UPLINK_2_C=${UPLINK} UPLINK_3_C=${UPLINK} UPLINK_4_C=${UPLINK} # remove old qdiscs $TC qdisc del dev $DEV root 2> /dev/null > /dev/null $TC qdisc del dev $DEV ingress 2> /dev/null > /dev/null # reset iptables rules $IPT -t mangle -D POSTROUTING -o $DEV -j MYOUT $IPT -t mangle -F MYOUT $IPT -t mangle -X MYOUT # set outgoing queue length $IP link set dev $DEV qlen ${OUT_QLEN} # lower the MTU to decrease latency #$IP link set dev $DEV mtu $MTU # Create HTB root qdisc with an htb default of 30 $TC qdisc add dev $DEV root handle 1: htb default 40...
2011 Dec 12
2
Automated Regressions
Hello R-Experts, I've got a question, concerning the automation of a number of regressions (lm) with the help of a loop (for i in ....). The situation is as follows (the code follows after that): I have my data in an access database. I have historical data for 2000 parts, for each of this parts I want to do a regression analysis, so I need to do 2000 regressions (just for one country, there
2005 Jun 30
0
Relationship between dyn.load and library.dynam
...ions: loading the shared object and then making the names of the functions that the object exports available to applications. What I am trying to do is create a compiled shared library that is able to access the SEXP data type. To do this I wrtie the code in C, run R CMD SHLIB to generate the file MyOut.so. I then build a package with the following function: .First.lib<-function(lib, pkg){ dyn.load(x="/home/phineas/pkg/CallRFromC/R/MyOut.so") library.dynam(chname="MyOut") } The use of hard wired paths is to simplify development When I run R CMD check on the package...
2007 Aug 05
2
! Command from -rx?
This may sound stupid.. so bear with me for a moment. Assuming the only access I have to a machine is through asterisk -rx can I use the ! command? asterisk -rx help includes the ! command, but I can't seem to get it to work ie: asterisk -rx "! ls" Any help?
2011 Aug 21
2
how to improve summary.lm
Hello, I need a shorter summary.lm, instead of -------------------------------------------- Call: lm(formula = E$t ~ E$cfs) Residuals: Min 1Q Median 3Q Max -0.239674 -0.007694 0.006430 0.014330 2.496551 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) -1.994e-02 1.419e-04 -140.5 <2e-16 *** E$cfs 1.675e-05
2006 Jan 18
5
Bootstrapping help
...alled "cs". cs takes a data matrix (154 x 5) and calculates 12 different scores for me. cs outputs the data as a vector (12 x 1). cs doesn't really use weights, per se, however I have included this as one of the 2 arguments cs can take. I try performing a bootstrap by issuing: myout<-boot(data, cs,R=999) I have tried other versions where I specify stype="w", etc... The problem I get is that the dataset does not seem to be resampled. I end up with 999 replicates that have the exact same value of the output of cs. In the end I have something like Bootstr...
2016 Mar 30
0
How to split immediate in assembly output?
Hi, I am writing simple pattern in td that uses immediate and shall print it in assembler in two parts. Say for input immediate i: i1 = i << 2 i2 = i & 3 I want something like (simplified tablegen pseudocode): def MYINSN : Insn<(outs MyOut:$r0), (ins MyReg:$r1, MyImm32:$i), "prefix $i1 body $r0, $r1, $i2", [(... some pattern here)]>; In Insn pattern whole string goes to AsmString property. How can I do it with tablegen? Any examples from existing backends? P.S. Of course I can do custom node with one more pa...