search for: dx2

Displaying 20 results from an estimated 27 matches for "dx2".

Did you mean: dx
2010 Aug 10
3
sapply/lapply instead of loop
Using the input below, can I do something more elegant (and more efficient) than the loop also listed below to pad strings to a width of 5? The true matrix is about 300K rows and 31 columns. ####################### #INPUT ####################### > temp DX1 DX2 DX3 1 13761 8125 49178 2 63371 v75 22237 3 51745 77703 93500 4 64081 32826 v72 5 78477 43828 87645 > ####################### #CODE ####################### ssize <- c(nrow(temp), ncol(temp)) aa <- c(1:ssize[2]) aa <- paste("DX", aa, sep = "") record <- ma...
2006 Aug 09
2
Speeding indexing and sub-sectioning of 3d array
Hi, I am having a problem with a very slow indexing and sub-sectioning of a 3d array: > dim(arr) [1] 245 175 150 For each point in the array, I am trying to calculate the mean of the values in its surrounding: mean( arr[ (i - radius):(i + radius), (j - radius):(j + radius), (k - radius):(k + radius)] ) Putting that code in 3
2009 Sep 25
1
simulating a model
...mageshack.us/img24/743/imagemutr.jpg The script I am using is as it follows: require(simecol) mod1 <- new("odeModel",   main = function(time, init, parms) {   x <- init   p <- parms     dx1 <- p["K"] - p["alpha"]*x[1]*x[2] - p["gamma"]*x[1]     dx2 <- x[1]*x[2]*(p["alpha"] - p["beta"])     dx3 <- p["beta"]*x[1]*x[2] + p["gamma"]*x[1]     list(c(dx1, dx2, dx3)) }, times = c(from=0, to=100, by=0.1), parms = c(K=100, alpha=0.3, gamma=0.5, beta=0.2), init = c(S=500, V=100, R=0), solver = "lsoda&q...
2012 Feb 01
0
Multi-response, multi-rater kappa?
...ample of the type of data I might have (two patients, three doctors, five diagnoses): pat<-c('a','a','b','b','b') doc<-c('x','y','x','y','z') dx1<-c('1','2','3','4','5') dx2<-c('2','','4','','') df<-data.frame(pat=pat,doc=doc,dx1=dx1,dx2=dx2) df I found a paper that can address this, although I can't find any reference to it on cran. The other versions of kappa I have found on cran don't address the multi-response...
2001 Apr 19
2
Multiple linear regression
Dear R-users, I've a question regardiing multiple linear regression. Is it possible to regress a function of the type y=b0+b1*x1+b2*x2 constraining the partial derivatives dy/dx1 and dy/dx2 to be greater than 0 ??? Thank you very much for any possible suggestion. Best regards Marco -- Marco Pagani - PhD Student Dipartimento di Scienze della Terra - Sezione Geofisica Universita' degli Studi di Milano c/o CSGAQ - CNR via Bassini, 15 - I-20133 Milano - Italia tel: +39-02-23699455...
2003 Oct 23
2
OOP like handling of lists?
...################################################################## library(odesolve) ## The differential equation model ################################## lvmodel<-list( equations = function(t, x, p) { dx1.dt <- p["k1"] * x[1] - p["k2"] * x[1] * x[2] dx2.dt <- - p["k3"] * x[2] + p["k2"] * x[1] * x[2] list(c(dx1.dt, dx2.dt)) }, parms = c(k1=0.2, k2=0.2, k3=0.2), xstart = c(prey=0.5, predator=1) # and some more elements ... ) class(lvmodel) <- "odemodel" ## Getting and setting parameter...
2003 Jan 14
6
Hardware advice please?
...uments it appears that the basic configuration I would start with is the Two Zone setup. I don''t believe that I have any need at this stage for a DMZ. (I would listen to any advice though!) My questions therefore relate to hardware and the firewall arrangement. 1. I have a spare 486-DX2-66, and a spare Pentium-200MMX both with minimum RAM, as well as a couple of small HDD 450 & 850MB. Which of these would be the better to use as the FW, and how does this FW PC impact on the performance of my small network (basically Pentium 111 PC''s). Or are these PC''s in...
2008 Apr 30
4
Garbage screen in some games
...1918 0000003c 00000400 0x0032fca8: 00000000 00000000 00000000 00000000 0x0032fcb8: 00000000 00000000 00000000 00000000 0x0032fcc8: 00000000 00000000 00000000 00000000 0x0032fcd8: 00000000 2e327864 00657865 00000210 0x0032fce8: 7bc40e85 00520ce8 0032fd40 7bc42fcf Backtrace: =>1 0x00401082 in dx2 (+0x1082) (0x0032ff08) 2 0x7b875cc7 in kernel32 (+0x55cc7) (0x0032ffe8) 0x00401082: movl %ecx,0x0(%esi) Modules: Module Address Debug info Name (60 modules) PE 400000- 40a000 Export dx2 ELF 7b800000-7b92c000 Export kernel32<elf> \-PE 7b820000-7b92c000 \...
2005 Sep 21
2
Bryan Smith: Thanks for the IPCop recommendation
...KB/sec off my cable modem. I am out in the low-density boonies, but I still feel this is fairly impressive. They even have a boot diskette available to support those old BIOS that won't boot CDs, as this unit was. So, thanks Bryan. I'm trying to configure a backup unit on an old Aptiva DX2/66. Have 1 ISA Etherjet. Need a couple more ISA NICS that are configurable for IRQ/IOBASE. Anyone that wants to put two old good ISA NICS into a home where they will be cared for and appreciated, send me an email with details, if config diskette available (even if off the net), price, etc. I...
2009 Apr 23
4
Which version of OpenGL is wine using?
Hello again. Today I got following questions: 1.Which version of OpenGL is wine written in? 3.1? 3.0? 2.1? 2.0? Lower maybe? 2.Is wine using custom OpenGL extensions? From which vendors (NVIDIA I guess, ATI, S3, INTEL or others as well?)? 3.What is the minimum OpenGL version to run DX2/3/6/7,DX8,DX8.1 and DX9.0 apps? (I guess for OpenGL apps it doesn't really matter right? You are just wrapping it to native OpenGL commands probably ? correct?) Can somebody answer that ? I'm very curious, also it may help me write my wine-apps-manager (Yes, I'm trying to write somethi...
2003 May 14
2
Booting from Harddisk
...h syslinux and copybs. I strictly follow the procedure in the syslinux documentation. Yet, the result of the boot is not that linux is starting. Instead, the Microsoft windows screen flashes for a couple of seconds and is then replaced by a Dos prompt. Syslinux is V2.04. The PC is an IBM Aptiva 486 DX2 I've also tried to prepare the HD using a pure Linux alternative. (Leaf/Bering 1.1 diskette with kernel supporting IDE disks) In this case running syslinux fails with undefined symbol open64 In attempt to remedy this, I've tried to link syslinux statically. The 'make installer' f...
2000 Feb 03
1
Performance Samba 2.0.6 / FreeBSD 3.4 vs NT and NetWare
...been testing performance and am a little disappointed, I hoped samba would be faster. Here are the servers I'm testing against: Netware 4.10 386 80 MHz 20Meg RAM SCSI IPX/SPX NT4 Server Pentium 150 MHz 32Meg RAM SCSI NetBEUI (Default) & TCP/IP & IPX/SPX FreeBSD 3.4 / Samba 2.0.6 486 DX2/66 MHz w/ Evergreen Pentium upgrade (approx 100/133 MHz, at least faster than it DX2/66 ) 64Meg RAM VLB IDE TCP/IP To test I have been copying a directory branch containing subdirectories of about 74Meg back and forth between the servers and a Win98 and WinNT workstation using Windows Explorer....
2010 Sep 27
1
Fitting with error on data
...forum proved to be very helpful, I got another question... I'd like to fit data points on which I have an error, dx and dy, on each x and y. What would be the common procedure to fit this data by a linear model taking into account uncertainty on each point? Would weighting each point by 1/sqrt(dx2+dy2) (and taking dx and dy as relative errors) in a lm() fit do the job? I would like to propagate uncertainty of the points into the uncertainty of the fit, would that be the case? Thanks for all the help -- View this message in context: http://r.789695.n4.nabble.com/Fitting-with-error-on-data-t...
2012 Jun 30
2
[LLVMdev] llc -O# / opt -O# differences
...Coord* %addr, i32 0, i32 0 %3 = load double* %2 %b = load %Coord** %b_ptr %addr1 = getelementptr %Coord* %b, i64 0 %4 = getelementptr inbounds %Coord* %addr1, i32 0, i32 0 %5 = load double* %4 %sub = fsub double %3, %5 store double %sub, double* %dx_ptr %dx = load double* %dx_ptr %dx2 = load double* %dx_ptr %mult = fmul double %dx, %dx2 ret double %mult } This roughly matches the following C code struct Coord { double x; double y; double z; }; double foo(struct Coord * a, struct Coord * b) { dx = a[0].x - a[0].y; return dx * dx; } Running through opt $ llvm-as &...
2019 Dec 13
2
Long running nbdkit tests
...re), here is a summary of how the tests are implemented: test-cache.sh Gx2 F D test-cache-on-read.sh Gx2 F D test-cow.sh Gx3 F test-partitioning3.sh G test-partitioning5.sh G F test-linuxdisk-copy-out.sh G Dx4 test-floppy.sh G Dx2 test-partitioning2.sh G F test-linuxdisk.sh G D test-iso.sh G D = using libguestfs download or similar APIs F = using libguestfs "fill" APIs which write lots of data G = guestfish xN = runs multiple times So there's quite a strong correlation be...
2001 Feb 12
4
Performance VPN over the internet
Hi 'tinc users' I'm new whit tinc and this mail-list. I like to build a vpn over the internet between two sites in Holland and Germany. Are there some experience whit the performance (turn-a-round en bandwidth) of a link. I want to use it for a 1,5Mb connection. Greetings, Fred Krom. - Tinc: Discussion list about the tinc VPN daemon Archive:
2019 Dec 14
0
Re: Long running nbdkit tests
...S: test-gzip 00:27:57 PASS: test-ext2 00:27:49 PASS: test-curl 00:27:16 PASS: test-iso.sh 00:25:56 PASS: test-nbd [all others < 7 mins] Analysis of what these tests do as in the previous email: test-readahead G Fx2 test-cow.sh Gx2 test-floppy.sh G Dx2 test-shell G test-linuxdisk-copy-out.sh G Dx4 test-partitioning3.sh G test-perl G test-partitioning5.sh G F test-memory G test-ocaml G test-lua G test-tcl G test-offset...
1999 Sep 04
0
[Fwd: win 95b, win 95, encrypted passwords]
...this on the main samba mailing list. I've forwarded it there for you. <samba@samba.org> Mailing list information can be found at http://listproc.samba.org Cheers, jerry Wayne Fool wrote: > > I am confused about this password issue, I have samba 2.0.5a running on > a 486/dx2/66 as a print server for 3 computers, one is a win 95b and the > other is a win 95 (pre b), the other is a dos computer (but that is > another story, I'll tackle that one later). > > My network administrator says I must use encrypted passwords so I have > used them. The win 95...
1999 Sep 05
0
win 95b, win 95, encrypted passwords
A while back, Wayne Fool wrote: > I am confused about this password issue, I have samba 2.0.5a > running on a 486/dx2/66 as a print server for 3 computers, one is a > win 95b and the other is a win 95 (pre b), the other is a dos > computer (but that is another story, I'll tackle that one later). > > My network administrator says I must use encrypted passwords so I > have used them. The win 95...
2002 Oct 17
0
Still can't make it work (LONG)
...x has both ipchains and iptables installed. I'm not sure if these can cause the problems I'm having or not. B. Windoze Box #1 (jarjar) - Toshiba Satellite Laptop, Pentium III 750 MHz Windows 98 SE Netlink PCMCIA Ethernet Card IP set by DHCP from ISP C. Windoze Box #2 (obi-wan) - 486 DX2 66Mhz, 8 MB RAM, 400 MB HD WFW 3.11 MS TCP/IP32 3Com 3C509 ISA Ethernet Card I tried running through the DIAGNOSIS.txt file with the following results: Test 1: testparm shows all clear Test 2: (from obi-wan) ping luke: Success (had to manually supply IP address) (from luke) ping obi-wan:...