Displaying 20 results from an estimated 48 matches for "hartley".
Did you mean:
harley
2010 Feb 26
1
Hartley's table
Hi,
Does anyone know how to generate Hartley's table in R?
--------------------------------------
Silvano Cesar da Costa
Departamento de Estat?stica
Universidade Estadual de Londrina
Fone: 3371-4346
2011 Feb 16
1
Hartley's table
Hi,
I used the commands below to make Hartley's table,
but some values are NA.
require(SuppDists)
trat = seq(2, 15, 1)
gl = seq(2, 40, 1)
har = matrix(0, nr=length(gl), nc=length(trat))
for(i in 1:length(gl))
for(j in 1:length(trat))
har[i,j] <- qmaxFratio(.95, df=gl[i], k=trat[j])
rownames(har) <- gl
colnames(har) <- tra...
2011 May 04
4
[PATCH 1/1] Staging: hv: Add the necessary dependencies to hyperv Kconfig
The vmbus driver dependes on ACPI and PCI subsystems. Change
Kconfig to reflect this.
Signed-off-by: K. Y. Srinivasan <kys at microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com>
---
drivers/staging/hv/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/hv/Kconfig b/drivers/staging/hv/Kconfig
index 76f0756..5e0c9f6
2011 May 04
4
[PATCH 1/1] Staging: hv: Add the necessary dependencies to hyperv Kconfig
The vmbus driver dependes on ACPI and PCI subsystems. Change
Kconfig to reflect this.
Signed-off-by: K. Y. Srinivasan <kys at microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com>
---
drivers/staging/hv/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/hv/Kconfig b/drivers/staging/hv/Kconfig
index 76f0756..5e0c9f6
2008 Jan 15
6
live migration breaking...aoe issue?
I am trying to get a proof-of-concept type setup going...I have a
storage box and 2 xen servers...I am using file based disk that live
on the aoe device...i can run the vm from either host without
issue...when I run the live migration, the domain leaves the xm list
on host 1 and shows up on host 2 (however there is a pause for pings
of about 2 minutes?)...after it is on host 2, I can xm console
2008 Apr 19
6
sparc server plus zfs
I have heard rumors to the affect that there will be a sparc release
of lustre incorporating zfs. If this is true does anyone know how I
can get a copy, beta test, or sign up for the effort.
2002 Jan 02
2
dos command line
All,
I am an Splus user trying to use R for a specific project where the client
needs the programs to be run in R. Before the holidays, I figured out how
to run an R file from the dos command line--it worked great! The command is
"Rterm something filename". I can't remember what it is now, and it is
driving me nuts. Anyone know? I know I'll feel pretty stupid once the answer
2006 Jun 22
2
problem - DSL line and Digium card
...voice line to my Asterisk box. When
the Digium card answers that line, the DSL modem is disconnected until
the line releases. The phone line is split at the DSL modem then run to
an FXO port.
I'm using one of the 4 port analog Digium cards (3 FXO/1 FXS).
Thanks for any suggestions.
Eric Hartley
2011 Mar 02
2
Vector manipulations
I have a question regarding the most efficient way to select a substring of
a vector:
I have a vector of value v, and I want to select a subspace of this vector
called w such that:
w=v[1:n]
where
sum(w) = x
I am interested in what you thing would be the most efficient way to do this
- I would like to avoid slowing down my simulations as much as possible.
Thank you very much for any help that
2005 Jul 20
2
.spl files
I am not certain that this is the right place to post this, but maybe
some kind soul can point me in the right direction if not. And I
apologize if this is the wrong spot...The reason I posted here is that
I recall running across a syslinux changlog that said "..added support
for reading .spl..." files. I want to customize the suse boot up
splash screens (for a CD install). I have been
2005 Apr 27
4
has_many syntax
Hi all,
I have the following inside of an AR class definition:
relationships=ActiveRecord::Base.connection.select_all(my_relationships_sql)
relationships.each do |relationship|
has_many RelatedItems, :class_name => relationship[''RelatedClass''],
:foreign_key => relationship[''ForeignKey'']
end
This kind of works, but how can I assign the name of the
2004 May 06
5
Orthogonal Polynomial Regression Parameter Estimation
...y(X, degree = 6)6
0.006154575
--------------------------------------------
And using the solution procedure given in Draper,
Smith(1981) is -
--------------------------------------------
The following values are coefficients of 0-6th order
(for n=8) polynomial collected from Pearson, Hartley
(1958) table, page 212:
> p0<-rep(1,8)
> p1<-c(-7,-5,-3,-1,1,3,5,7)
> p2<-c(7,1,-3,-5,-5,-3,1,7)
> p3<-c(-7,5,7,3,-3,-7,-5,7)
> p4<-c(7,-13,-3,9,9,-3,-13,7)
> p5<-c(-7,23,-17,-15,15,17,-23,7)
> p6<-c(1,-5,9,-5,-5,9,-5,1)
Now, the estimated parameters of t...
2004 Dec 19
1
Homogeneity of variance tests between more than 2 samples (long)
Dear all
a couple of months ago i've found threads regard test that verify AnOVa
assumption on homogeneity of variances. Prof. Ripley advice LDA / QDA
procedures, many books (and many proprietary programs) advice Hartley's F_max,
Cochran's minimum/maximum variance ratio (only balanced experiments), K^2
Bartlett's test, Levene's test.
Morton B. Brown and Alan B. Forsythe in a 1974 article wrote about "Robust test
for the equality of variances" (editet by Journal of the American Statistica...
2012 Jul 04
1
[LLVMdev] Non-tail calls
Hi all.
I am using LLVM to develop a procedural language. Can anybody point me to an example that uses CreateCall for a non-tail call? I am having trouble doing anything with the return value from the call besides returning it immediately.
i.e. Passing the CallInst created by CreateCall to CreateRet is working fine, but I am having trouble storing the returned value in a local variable or
2012 Jul 04
1
[LLVMdev] Non-tail calls
On Wed, Jul 04, 2012 at 11:31:57AM +0100, Joey wrote:
> Sounds like you are using the C++ API.
>
> You can store the value like:
> Value *val = Builder.CreateCall(...);
>
> Then, for example, you can do:
> Builder.CreateAdd(val, val);
That looks a lot like what I am trying to do. I will assume that my problem is either caused by my environment (VC7.1) or by the fact
2003 Jan 08
1
thanks to Thomas Eastep
...d healthy!
May he also go forth and prosper with his great knowledge .... His work deserves to
be listed at the top of those lists of top Free Open Source Software
success stories. Happy New Year Tom!
PS- Thanks also to everyone else on the shorewall project. May the FOSS be
with you!
--
David R. Hartley
Linux Web Project
penguin@linuxweb.org
2005 Mar 19
1
seeking Icecast ninja
I'm in charge of developing a huge music project. Streaming audio
content broadcasting multiple channels, live events, dynamically
generated playlists, and more will be a feature of the site. I've
installed Icecast and spent a lot of time trying to get it functional
without much success. I have a massive amount of stuff to coordinate so
I'm looking for help to get this thing
2005 Mar 16
1
Is there an opposite of Inflector.Camelize
Or to put it another way, is there a function f, such that
Inflector.f(Inflector.Camelize(x)) = x
?
Enquiring minds need to know.
Adelle.
2004 Nov 30
0
[Bug 2104] New: Add support for --dry-run with --write-batch
...more work in --dry-run mode than
normal when --write-batch is specified (i.e. generating checksums, computing
diffs), but still not send the update-data to the receiver (just to write it to
the batch file). This _might_ be fairly easy, but I haven't checked yet to be sure.
(Suggested by Peter Hartley.)
--
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
2003 Sep 22
0
multiple permissioning for same user in username.map
...Is there a way to specify a usermap.txt per share? the
only docs I can find list it as a global directive. Being a bear of very
little brain I am having difficulty working around this as I have no
control over the NT / ADS domain accounts.
Regards
Myles
-------------------------------
Myles Hartley
Unix & Wintel Infrastructure
Deutsche Bank International
www.dboffshore.com
+44 (0) 1534 889 321
-------------------------------