search for: dbr

Displaying 20 results from an estimated 25 matches for "dbr".

Did you mean: db
2000 Dec 14
2
Accuracy problem in dchisq for non-central chi-squared
...fied a inaccuracy in dchisq when the non-centrality parameter is non-zero and large. Here's a little test: sys.dchisq.test <- function(N = 100000,mean = 0) { z <- rnorm(N,mean = mean, sd = 1) x <- z^2 xmin <- min(x) xmax <- max(x) br <- seq(xmin,xmax,length = 101) dbr <- br[2]-br[1] hist(x,br) p <- dchisq(br,df = 1,ncp = mean^2) * dbr lines(br,N*p) } par(mfrow = c(2,1)) sys.dchisq.test(mean = 10) sys.dchisq.test(mean = 15) Here's my version information: platform Windows arch x86 os Win32 system x86, Win32 status...
2005 Dec 29
1
use of tapply?
...ake the time to show me how I can rewrite this code? Many thanks Tom data.intersects<-data.frame( x=c(0.230,0.411,0.477,0.241,0.552,0.230), y=c(0.119,0.515,0.261,0.431,0.304,0.389), angle=vector(length=6), length=vector(length=6), row.names=c('tbr','trg','dbr','dbg','pbr','pbg')) calcDist<-function(x,y){ #calcualates distance from origin (C) origin<-data.frame(x=0.34,y=0.36) dx<-origin$x-x dy<-origin$y-y length<-sqrt(dx^2+dy^2) angle<-asin(dy/length) return(list('length...
2013 Mar 05
1
Remote database & local database, and adding new weight found vtable error
...hod 1: Xapian::Database db = Xapian::Database(the path of DB1); Xapian::Database db2 = Xapian::Database(the path of DB2); db.add_database(db2); I pre-load the docid and its document data into dictionary DT1; method 2: DB1 and DB2 are opened by Xapian-tcpsrv for remote access. Xapian::Database dbr = Xapian::Remote::open(host of DB1, port of DB1, 0, 0); Xapian::Database dbr2 = Xapian::Remote::open(host of DB2, port of DB2, 0, 0); db.add_database(dbr2); Here dictionary DT2 holds the docid and its document data. ============= Q2. I want add a weight scheme into Xapian-1.2.12; I have imple...
2013 Jun 18
2
offset en bucle
...para entrenar unos modelos con GAM. La respuesta es quasipoisson porque estoy trabajando con densidades de peces. Sin embargo, tengo un problema, no se muy bien como añadir el offset a la formula siguiente cuando creo el bucle. GAM.A1 <-gam ((DYO)~s(DMA,k=4)+ s(WOD,k=4)+s(CIN,k=4)+s(DRA,k=4)+s(DBR,k=4) +offset(log(ARE)),family=quasipoisson(link = "log"),data=as.data.frame(cbind(DYO,Conjunto))) Os escribo el codigo del bucle: for(i in (1:nrow(VarCombS))){ Formula <- as.formula(paste("DYO",sep=" ~ ",paste(as.matrix(VarCombS)[i,1:NVar],sep="",colla...
2002 Dec 30
1
Java Swing App
...(); frame.setVisible(true); } } I'm running RedHat-7.3, with all the latest updates, Gnome-2, and a 2.4.20 kernel. I'm using a recent CVS of wine, Dec 23, I think, compiled with OpenGL support. Any suggestions of how to make this work, or how to diagnose it further? Thanks! dbr -- David B. Ritch High Performance Technologies, Inc.
1999 May 01
4
Bad smbclient put performance and smbfs write performance
Hi, I've had extremely bad smbclient put performance when connecting from my Linux box to a Windows 95 box. I only get about 10KBytes/s! All other forms of data transfer work fine, and I get from 600-700KBytes/s. This is on a local 10BT LAN. I've seen a few other reports of this, but no solutions as of yet. smbclient does puts just fine to another Linux/Samba Server. I'm using
2008 Mar 31
1
[03/15][PATCH] kvm/ia64: Add header files for kvm/ia64. V8
Hi Xiantao, Some more nit-picking, though some of this is a bit more important to fixup. Cheers, Jes > +typedef struct thash_data { Urgh! argh! Please avoid typedefs unless you really need them, see Chapter 5 of Documentation/CodingStyle for details. > diff --git a/include/asm-ia64/kvm_host.h b/include/asm-ia64/kvm_host.h > new file mode 100644 > index 0000000..522bde0 > ---
2008 Mar 31
1
[03/15][PATCH] kvm/ia64: Add header files for kvm/ia64. V8
Hi Xiantao, Some more nit-picking, though some of this is a bit more important to fixup. Cheers, Jes > +typedef struct thash_data { Urgh! argh! Please avoid typedefs unless you really need them, see Chapter 5 of Documentation/CodingStyle for details. > diff --git a/include/asm-ia64/kvm_host.h b/include/asm-ia64/kvm_host.h > new file mode 100644 > index 0000000..522bde0 > ---
1999 May 05
0
? lmhosts ?
....edu> > 5) NT4 access help > by "Rutherford, John (Library)" <Rutherford@mail.ccsu.edu> > 6) SAMBA digest 2074 > by KbkVersand@aol.com > 7) Bad smbclient put performance and smbfs write performance > by "David B. Rees" <dbr@spoke.nols.com> > > ---------------------------------------------------------------------- > > Date: Fri, 30 Apr 1999 17:13:09 +0100 > From: julie.kilbourne@amd.com > To: samba@samba.org > Cc: robert.brodie@amd.com > Subject: Unable to map network drives > Message-ID...
2019 Jan 12
2
Solr -> Xapian ?
...e unix rights after too many tests) Getting back on the "fts_results" structure: I am trying: I_ARRAY_INIT(&(RESULT->DEFINITE_UIDS),R->SIZE); I_ARRAY_INIT(&(RESULT->MAYBE_UIDS),0); uint32_t uid; for(i=0;i<r->size;i++) { try { uid=atol(backend->dbr->get_document(r->data[i]).get_value(1).c_str()); i_warning("Rresult UID=%d",uid); ARRAY_IDX_SET(&(RESULT->DEFINITE_UIDS),I,&UID); } catch(Xapian::Error e) { i_warning(e.get_msg().c_str()); } } I can see in hte log that UID are properly foun...
2013 Jun 18
0
Fwd: offset en bucle
...para entrenar unos modelos con GAM. La respuesta es quasipoisson porque estoy trabajando con densidades de peces. Sin embargo, tengo un problema, no se muy bien como añadir el offset a la formula siguiente cuando creo el bucle. GAM.A1 <-gam ((DYO)~s(DMA,k=4)+ s(WOD,k=4)+s(CIN,k=4)+s(DRA,k=4)+s(DBR,k=4) +offset(log(ARE)),family=quasipoisson(link = "log"),data=as.data.frame(cbind(DYO,Conjunto))) Os escribo el codigo del bucle: for(i in (1:nrow(VarCombS))){ Formula <- as.formula(paste("DYO",sep=" ~ ",paste(as.matrix(VarCombS)[i,1:NVar],sep="",colla...
2006 Feb 12
0
Re: sending personalized emails efficiently
...g like this I would avoid actionmailer as it seems to not like to send that many emails very fast. I would probably fork a ruby script that uses Tmail or Rhizmail to build the mime messages and the use threads in that process to send the mails with net/smtp. You could also look at drb to run a ruby dbr server that would just wait for a request from your rails app and then have that take care of the mail build and send process. It would probably work even better if you had a mail server on the same machine and you could push the emails into the mailer daemon''s queue. The queue of the smtp...
2012 Jun 10
1
HVM vs PV - conversion
...me = 0 on_poweroff = "destroy" on_reboot = "restart" on_crash = "restart" device_model = "/usr/lib64/xen/bin/qemu-dm" sdl = 0 vnc = 1 vncunused = 0 vncdisplay = 53290 keymap = "en-us" disk = [ "phy:/dev/VG1/DBS1,hda,w" , "phy:/dev/VG2/DBR,hdb,w", "phy:/dev/VG2/DBR_backup,hdc,w" ] vif = [ "mac=00:16:36:0a:aa:69,bridge=eth4,script=vif-bridge" ] parallel = "none" serial = "pty" Just changing the config file to something like: VMHOST1 /]# more /etc/xen/DBS2a name = "DBS2a" maxmem...
2019 Jan 13
0
Solr -> Xapian ?
...ck on the "fts_results" structure: > > I am trying: > > I_ARRAY_INIT(&(RESULT->DEFINITE_UIDS),R->SIZE); > I_ARRAY_INIT(&(RESULT->MAYBE_UIDS),0); > > uint32_t uid; > for(i=0;i<r->size;i++) > { > try > { > uid=atol(backend->dbr->get_document(r->data[i]).get_value(1).c_str()); > i_warning("Rresult UID=%d",uid); > ARRAY_IDX_SET(&(RESULT->DEFINITE_UIDS),I,&UID); > } > catch(Xapian::Error e) > { > i_warning(e.get_msg().c_str()); > } > } > > I can see in hte log that U...
2002 Mar 20
4
rsync 2.5.4 on win2k machine
Hi, i have downloaded rsync 2.5.4 source and was trying to compile it on win2k machine. is it supported on win2k machine ? Please ignore warnings below about mktemp -- it is used in a safe way gcc -g -O2 -DHAVE_CONFIG_H -Wall -W -o rsync rsync.o generator.o receiver.o cle anup.o sender.o exclude.o util.o main.o checksum.o match.o syscall.o log.o backu p.o options.o flist.o io.o compat.o hlink.o
2010 Dec 12
5
Stripping silent periods from MP3s
I'm on Centos 5.5, and would like to use sox to strip out any periods of silence > 5 seconds from a batch mp3 audio files. Googling I found sox, but it does not seem to support mp3 files by default. The man page says: .mp3 MP3 Compressed Audio MP3 audio files come from the MPEG standards for audio and video compression. They are a lossy compression format that achieves
2019 Jan 12
2
Solr -> Xapian ?
THank you Now, for the results I see the member of fts_result is : ARRAY_TYPE(seq_range) definite_uids; I have the UID as a aray of uint32_t * How to put my UIDs into this "definite_uids" ? Obviously this is not a simple array/pointer. How to say someting similar to result->definite_uids[1]=my_uid ? On 2019-01-12 10:25, Timo Sirainen wrote: > On 11 Jan 2019, at 21.23,
2013 Mar 04
2
Need Beginner Guide for Matcher Optimisations Project
Hi, While searching for a project which matches my interest andskill level, I found this project named Matcher Optimization. This project is really challenging and excting from my view point and I would like to be a part of this project. Optimization techniques metioned in the reference links provided will take some time for me to have a good understanding about them. But I am trying to get my
2006 Dec 27
6
file upload
I ma trying to get this upload working, http://mongrel.rubyforge.org/docs/upload_progress.html, ....after starting from the command line, mongrel_rails start -d -p 3001 -S config/mongrel_upload_progress.conf I get this eror in the browser, NameError uninitialized constant UploadProgressRailsController RAILS_ROOT: /usr/opt/tomcat/workspace/upload/config/.. Application Trace | Framework Trace
2008 Feb 28
7
[PATCH 0/5] RFC: ia64/pv_ops: ia64 intrinsics paravirtualization
Hi. Thank you for comments on asm code paravirtualization. Its direction is getting clear. Although it hasn't been finished yet, I'd like to start discussion on ia64 intrinsics paravirtualization. This patch set is just for discussion so that it is a subset of xen Linux/ia64 domU paravirtualization, not self complete. You can get the full patched tree by typing git clone