search for: yoou

Displaying 12 results from an estimated 12 matches for "yoou".

Did you mean: you
2011 Jan 27
5
Help needed
...lement. I know how to choose the negative elements for A but how to find integers? And I dont know what to do for B. 2nd Question Simulate 1000 observations from the student-t distribution with 3 degrees of freedom and then calculate the truncated mean by excluding bottom 5% and top 5%. Thank yoou [[alternative HTML version deleted]]
2009 Mar 29
1
Subscription request
Hello, I would like to subscribe to the mailing list. I already receive the daily digest, but for some reason I am not subscribed to the list, meaning any posts I make by replying to the e-mail digest have to be placed on the list by a moderator - incurring significant delay. Thanks, Michael [[alternative HTML version deleted]]
2012 Dec 06
1
Vectorizing integrate()
I have written a program to solve a particular logistic regression problem using IRLS. In one step, I need to integrate something out of the linear predictor. The way I'm doing it now is within a loop and it is as you would expect slow to process, especially inside an iterative algorithm. I'm hoping there is a way this can be vectorized, but I have not found it so far. The portion of code
2009 Jan 13
5
set the background to a bitmap
Hi, any ideas whether you can set the background of a dialog to use an image? -- Posted via http://www.ruby-forum.com/.
2007 Mar 19
2
Problems with Steam Games (possible others?)
Hello, I've tried a few Steam games, and played them for a bit, but I have a few problems: 1) Because I run dual monitors, normal full screen games will not work. Furthermore, full screen games with a virtual desktop go in a 800x600 window and will not resize, so I have to play the games in a window in a virtual desktop. This is relatively minor and I can live with it, but it anyone has a
2014 Sep 20
0
Re: sr-iov on Intel 82576 and rhel 7 - would not work
...39;m not aware of any way that error message might be related to device passthrough. Your config looks fine, as long as enp2s0f1 is the SRIOV card's PF (Physical Function) and the output of ip link show dev enp2s0f1 shows a list of VFs. In the case that you have no VFs created for that device, yoou can make sure this happens by adding the following to /etc/modprobe.d/local.conf: options igb max_vfs=7 BTW, unless you're concerned about the amount of bandwidth available on a single port of your switch, you can use the PF for host networking, and still use the VFs of that same PF for pas...
2014 Sep 19
3
sr-iov on Intel 82576 and rhel 7 - would not work
hi everybody a windows kvm guest would not start, process gets killed with: Out of memory: Kill process 21984 (qemu-kvm) score 44 or sacrifice child I really don't know where/what I might be missing, config seems fine, everything looks ok - I only am not sure, do I need to first stub a SR-IOV device like regular passthrough? I'm trying sr-iov, having one NIC left to the host and the
2004 Jan 11
0
[ANNOUNCE] netfilter project calls for volunteers
...lect links for pages related to netfilter/iptables on the web, and maintaining that list of links. Ideally we would have a database-generated categorized links section (not only a single page) on our website, where people could suggest new links (to be approved by a moderator) via a HTML form. If yoou want to hack up a bunch of scripts, that would be great - but that is optional. 6) Maintainance of the netfilter/iptables FAQ The netfilter FAQ is not very actively maintained these days. This is because the maintainer is (guess who): Harald - and as stated before he really loves to code, rathe...
2011 Jan 27
4
Writing program for these
...lement. I know how to choose the negative elements for A but how to find integers? And I dont know what to do for B. 2nd Question Simulate 1000 observations from the student-t distribution with 3 degrees of freedom and then calculate the truncated mean by excluding bottom 5% and top 5%. Thank yoou [[alternative HTML version deleted]]
2003 Nov 22
3
New index / mailbox API
...'s changes into it. If lock can't be acquired in a second or so, the main index will be rewritten into temp file and rename()d over. This means that we can have tons of sessions reading and writing to same shared index file and no session can block others from reading or writing. Currently yoou could easily block changes for a very long time with eg. FETCH 1:* BODY.PEEK[] and reading it 1 bytes/sec. - mail_index will be a class interface, so it's implementation can be changed at runtime. In-memory indexing is going to be a totally different implementation this time with better memory...
2006 Oct 24
11
Xen 3.0.3 confusion
I am thoughly confused with the various Xen 3.0.3 versions for Suse. Firt there is not for suse 10.1, so I gues I woulllt the source tarball and compile. ( I tried the RPM for 10.0 (I am running SuSE 10.1) but it caused a kernel panic) I have 5 packages listed unter Yast software management (not including documentation,pdf, etc). Kernel-xen ver 2.6.16.21.25 Xen 3.02_09763-0.8 xen-libs
2010 Nov 03
3
optim works on command-line but not inside a function
Dear all, I am trying to optimize a logistic function using optim, inside the following functions: #Estimating a and b from thetas and outcomes by ML IRT.estimate.abFromThetaX <- function(t, X, inits, lw=c(-Inf,-Inf), up=rep(Inf,2)){ optRes <- optim(inits, method="L-BFGS-B", fn=IRT.llZetaLambdaCorrNan, gr=IRT.gradZL, lower=lw, upper=up, t=t, X=X)