search for: x10

Displaying 20 results from an estimated 380 matches for "x10".

Did you mean: x100
2011 Mar 12
1
Column order in stacking/unstacking
...can use it in other operations (e.g., generating predictions from a GLM object). However, the problem I'm having can be reproduced with something as simple as this: > testdat <- data.frame("1" = c(1:5), "2" = c(1:5), "10" = c(1:5)) > testdat X1 X2 X10 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 5 5 5 Please note that the numeric column names are what I'm dealing with in my real data frame too. Stacking into a long format works fine: > stacked <- stack(testdat) > stacked values ind 1 1 X1 2...
2008 Dec 24
1
SSL cert problems.
...te offices on CentOS 5.2. We purchased a SSL cert from Verisign and installed it on our dovecot server, but I continue to get failure problems with the cert and I don't know where to go from here. here is some info about our config: dovecot version: # dovecot --version 1.0.7 hostname: pop.x10.com dovecot.conf: # dovecot -n # 1.0.7: /etc/dovecot.conf base_dir: /var/run/dovecot/ log_path: /var/log/dovecot.log protocols: pop3 pop3s ssl_ca_file: /etc/pki/verisign/intermediate_ca.cer ssl_cert_file: /etc/pki/dovecot/certs/pop.x10.com.cer ssl_key_file: /etc/pki/dovecot/private/pop.x10.com.key...
2008 Dec 22
1
sem package fails when no of factors increase from 3 to 4
...,1 xi3 <-> xi3,NA,1 xi1 <-> xi2 ,PH12,NA xi1 <-> xi3 ,PH13,NA xi2 <-> xi3 ,PH23,NA mod3.1_6AND10_12<-specify.model(); X1 <-> X1,TD11,NA X2 <-> X2,TD22,NA X3 <-> X3,TD33,NA X4 <-> X4,TD44,NA X5 <-> X5,TD55,NA X6 <-> X6,TD66,NA X10 <-> X10,TD77,NA X11 <-> X11,TD88,NA X12 <-> X12,TD99,NA X1 <- xi1,LY11, NA X2 <- xi1,LY21, NA X3 <- xi1,LY31, NA X4 <- xi2,LY42, NA X5 <- xi2,LY52, NA X6 <- xi2,LY62, NA X10 <- xi3,LY73, NA X11 <- xi3,LY83, NA X12 <- xi3,LY93, NA xi1 <-&g...
2019 Apr 10
0
DsReplicaSync failed - WERR_LOGON_FAILURE // Failed to bind to uuid for ncacn_ip_tcp - NT_STATUS_LOGON_FAILURE
...00001.domain.de] > 'DC=251,DC=13.168.192.in-addr.arpa,CN=MicrosoftDNS,DC=DomainDnsZones,DC=domain,DC=de' > [ldap://location-000002.domain.de] > Difference in attribute values: > dnsRecord => > [' > \x00\x0c\x00\x05\xf0\x00\x00\xdb\x00\x00\x00\x00\x00\x0e\x10\x00\x00\x00\x00\x0f\xf27\x00\x1e\x03\x0flocation-000001\tdomain\x02de\x00'] > [' > \x00\x0c\x00\x05\xf0\x00\x00\xd9\x00\x00\x00\x00\x00\x0e\x10\x00\x00\x00\x00\x08\xf27\x00\x1e\x03\x0flocation-000001\tdomain\x02de\x00'] > FAILED > > Comparing: > 'DC=251,DC=30.1...
2004 Oct 28
1
gsub() on Matrix
...t;A", "i9", "i2", "i4", "i15", "i21") and have another vector, say: > orig [1] "x1" "x2" "x3" "x4" "x5" "x6" "x7" "x8" "x9" "x10" [11] "x11" "x12" "x13" "x14" Then I tried something like gsub(orig, repl, mat) ## mat is the name of my matrix but it didn't work *_*.....it would replace terms like x10 with i70. (I know it may be an easy question...but I haven't done much...
2005 Jun 29
2
quick way to construct formula
Dear R users, I have a data with 1000 variables named "x1", "x2", ..., "x1000", and I want to construct a formula like this format: ~x1+x2+...+x1000+x1:x2+x1:x3+x999:x1000+log(x1)+...+log(x1000) That is: the base variables followed by all interaction terms and all base feature log-transformations. I know I can use several paste functions to construct it. But is ther...
2013 May 29
3
bootstrap
...n=0, sd=1)? x2 <- rnorm(size, mean=0, sd=1)? x3 <- rnorm(size, mean=0, sd=1)? x4 <- rnorm(size, mean=0, sd=1)? x5 <- rnorm(size, mean=0, sd=1)? x6 <- rnorm(size, mean=0, sd=1)? x7 <- rnorm(size, mean=0, sd=1)? x8 <- rnorm(size, mean=0, sd=1)? x9 <- rnorm(size, mean=0, sd=1)? x10 <- rnorm(size, mean=0, sd=1)? e<-rnorm(size, mean=0, sd=1)? t_trueps <- (1 + exp( -(b0 + b1*x1 + b2*x2 + b3*x3 + b4*x4 + b5*x5 + b6*x6 + b7*x7? + b2*x2*x2 + b4*x4*x4 + b7*x7*x7 + b1*0.5*x1*x3 + b2*0.7*x2*x4 +b3*0.5*x3*x5? + b4*0.7*x4*x6 + b5*0.5*x5*x7 + b1*0.5*x1*x6 + b2*0.7*x2*x3 + b3*0.5...
2010 Jan 17
2
Strange results from Windows 7
Hello, I am a newbie. I can run the following code stored in "test.txt" without error using my XP machine: x <- scan("C:\\Rwork\\A.txt") x10 = filter(x, rep(1/10,10), sides=1) x x10 for(i in 10:length(x)){ if (x[i] > x10[i]) diff[i]="b" else diff[i]="s" } However, if I run it in another PC that uses Windows 7, the following error occurs: > source("c:\\Rwork\\test.txt") Read 290 items Error in dif...
2012 Feb 17
5
How to change the order of columns in a data frame?
Dear all, I have a data frame in which the columns need to be ordered. The first column X is at the right position, but the remaining columns X1-Xn should be ordered like this: X1, X2, X3 etc instead of like below. > colnames(pos1) [1] "X" "X1" "X10" "X11" "X12" "X13" "X14" "X15" "X16" "X17" "X18" "X19" "X2" "X20" "X3" "X4" "X5" "X6" "X7" "X8" "X9" &gt...
2007 Oct 18
2
phone as control interface(was99bottlesofbeer)
...esday, October 16, 2007 9:46 AM Subject: Re: [asterisk-users] phone as control interface(was99bottlesof beer) >> has anyone actually been satisfied with the performance of these >> powerline signalling devices ? > > Universal Powerline Bus is a vast improvement over the original X10. I > believe the X10 devices used a 4V signal during the zero crossing point of > the AC voltage to transmit 1 bit. Needless to say this made X10 slow, > susceptible to line noise and not very reliable. IIRC X10 is only 75% > reliable. By contrast, UPB is 20-40 times faster, it uses a h...
2019 Apr 06
5
DsReplicaSync failed - WERR_LOGON_FAILURE // Failed to bind to uuid for ncacn_ip_tcp - NT_STATUS_LOGON_FAILURE
Am Sa., 6. Apr. 2019 um 18:01 Uhr schrieb Rowland Penny via samba < samba at lists.samba.org>: > On Sat, 6 Apr 2019 17:21:26 +0200 > Martin Krämer <mk.maddin at gmail.com> wrote: > > > Hello Rowland, > > > > thanks for your help. > > Below my comments > > > > See here: > > > > > > http://apt.van-belle.nl/ > > >
2010 Nov 08
2
conditional probability
Dear all I have problem with calculate probability, I have data x1,...,x10, I want to calculate probability x11 given x1,...,x10 with two conditions. 1. x is normal 2. unknow distribution How I can do this. Many Thanks. Jumlong -- Jumlong Vongprasert Assist, Prof. Institute of Research and Development Ubon Ratchathani Rajabhat University Ub...
2017 Jun 09
3
Reserve ARM register for only section of the program
Hi, How can I reserve an ARM register for only a part of the code? Example: lets say I have 3 functions, A(), B() and C(). I want to prohibit compiler from using a register (lets say X9 in ARM 64) in function C() only. I think that by AArch64RegisterInfo::getReservedRegs function, a register can be reserved for the whole program. But, I need to reserve for only part of the code. Can I
2013 Apr 13
1
how to add a row vector in a dataframe
...000 #x5??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #x6??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #x7??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #x8??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #x9??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #x10?? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #t ??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #y???? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #pshat Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #m0??? Numeric,3000 Numeric,3000 Numeric,3000 Numeric,3000 #m1??? Nu...
2007 Sep 01
0
phone as control interface (was 99 bottles of beer)
...> > >I am new to the whole controlling devices in your home from asterisk. Can anyone give me a URL to devices that I can connect >to my box that can then connect to the lights, security system, TV etc ? This is a whole new area for me to play and get lots >of sleepless nights ;) X10 control (Send data control signals over house wiring) I use an X10 Firecracker (CM17A) interface http://www.smarthome.com/1141.html which is a little radio transmitter the size of a DB9 shell and plugs into a serial port. The software that comes with it is for Windows and is very lame. However, the...
2020 Jun 01
3
Aarch64: unaligned access despite -mstrict-align
...return memcmp(g, c, 16); } $ clang --target=aarch64-linux-gnu -Os -mstrict-align -S test.c $ cat test.s .text .file "test.c" .globl f // -- Begin function f .p2align 2 .type f, at function f: // @f // %bb.0: adrp x8, g ldr x10, [x8, :lo12:g] ldr x9, [x0] ldr x8, [x10] rev x9, x9 rev x8, x8 cmp x8, x9 b.ne .LBB0_3 // %bb.1: ldr x8, [x10, #8] ldr x9, [x0, #8] rev x8, x8 rev x9, x9 cmp x8, x9 b.ne .LBB0_3 // %bb.2: mov w0, wzr ret .LBB0_3: cmp x8, x9 mov w8, #-1 cneg w0, w8, hs ret .Lfunc_end0: .size f, ....
2005 Sep 09
1
regression with restrictions - optimization problem
...e problem quite interesting to look at. I have been trying to estimate parameters for lotteries, the so called utility of chance, i.e. the "felt" probability compared to a rational given probability. A real brief example: Given is a lottery payoff matrix of the type x1 x2 ... x10 median 1000 5000 ... 5000 3750 0 1000 ... 5000 2250 etc. The actual data frame consists of 11 columns and 28 rows. Each entry x1 ... x10 gives the amount of money resp. the utility of that amount you receive playing the lottery. The probability for each column is 10%. The median...
2011 Dec 19
2
Summing x1 to x6
Suppose I have the following: x1<-as.vector(rnorm(10)) x2<-as.vector(rnorm(10)) x3<-as.vector(rnorm(10)) x4<-as.vector(rnorm(10)) x5<-as.vector(rnorm(10)) x6<-as.vector(rnorm(10)) x7<-as.vector(rnorm(10)) x8<-as.vector(rnorm(10)) x9<-as.vector(rnorm(10)) x10<-as.vector(rnorm(10)) I would like the mean of x1 to x6 for each vector position. I would do something else with x7-x10. These vectors are not currently in a dataframe. I tried to be clever by trying get(paste(paste("x", 1:6, sep=""), collapse="+")) but it didn&...
2017 Jun 14
1
Reserve ARM register for only section of the program
Hi, Thanks a lot. Is it possible to implement that functionality as a pragma? Ex. .. [code] ... #pragma A .. .. #pragma B .. .. Lets say I want to reserve registers X9 and X10 only within pragma A and B. Is it possible to achieve this in llvm? Thanks Nisal On Mon, Jun 12, 2017 at 9:54 PM, Tim Northover <t.p.northover at gmail.com> wrote: > Hi Nisal, > > (Adding llvm-dev back again; best to keep these things public in case > they help someone else...
2018 Mar 10
0
Resume problem with Samsung x10
Hello, I'm on a Samsung X10 laptop (2002 or so) with this video controller: VGA compatible controller : NVIDIA Corporation NV17M [GeForce4 440 Go 64M] (rev a3) (prog-if 00 [VGA controller]) Lubuntu 16.04, LXDE, kernel 4.4.0-104 mSASA 64GB at a mSATA-IDE adaptor acting as hard disk. All works nicely exept resume from sleep...