Displaying 6 results from an estimated 6 matches for "drow".
Did you mean:
drop
2005 Jul 21
3
vectorising ifelse()
Hi All,
is there any chance of vectorising the two ifelse() statements in the
following code:
for(i in gp){
new[i,1] = ifelse(srow[i]>0, new[srow[i],zippo[i]], sample(1:100, 1,
prob =Y1, rep = T))
new[i,2] = ifelse(drow[i]>0, new[drow[i]>0,zappo[i]], sample(1:100,
1, prob =Y1, rep = T))
}
Where I am forced to check if the value of drow and srow are >0 for each
line... in practical terms, I am attributing haplotypes to a pedigree,
so I have to give the haplotypes to the parents before I give them to
the...
2003 Feb 18
1
problems with ldap tls
...tc/openldap/www.zolnott.de-ldap-key-nopw.pem
Here my log.smbd:
[2003/02/18 01:40:12, 0] passdb/pdb_ldap.c:ldap_open_connection(182)
Failed to issue the StartTLS instruction: Can't contact LDAP server
[2003/02/18 01:40:12, 1] smbd/password.c:pass_check_smb(545)
Couldn't find user 'drow' in passdb.
[2003/02/18 01:40:12, 2] smbd/reply.c:reply_sesssetup_and_X(975)
NT Password did not match for user 'drow'!
[2003/02/18 01:40:12, 2] smbd/reply.c:reply_sesssetup_and_X(985)
Defaulting to Lanman password for drow
[2003/02/18 01:40:12, 0] passdb/pdb_ldap.c:ldap_open_conn...
2003 Sep 29
1
Problems with homes after updating to 3.0 (debian)
...ng my sid (debian) to samba-3.0 i cannot connect to my
homes-dir. I have the same configuration using with 2.2.
I do not know, where is my error. I will send you my smb.conf hopping
you can help me
[global]
panic action = /usr/share/samba/panic-action %d
netbios name = zolnott01
workgroup = DROW
server string = File- & Printserver Zolnott [%v]
syslog = 0
debuglevel = 0
dead time = 15
message command = /bin/bash -c '/usr/X11R6/bin/xterm -T "WinPopup-Message" \
-e /usr/bin/vim %s; rm %s' &
auto services = pub cms
security = domain
username level = 8
userna...
2015 May 31
0
whats the holdup on whql signed virtio drivers?
why is it so hard to get signed virtio drivers? is it politics? a license
issue? can someone with involved with or knows of these decisions comment?
dont want to start a thread of speculation. we all know all where that
leads and i dont want it drowing out any answers.
2005 Sep 06
1
TDM 400p
Hi all,
I have a Digium TDM 400P at several locations. Once and again I'll need
to restart the drivers because there is no ringing.
Does anyone know a fix for this problem?
Greatings
Johan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050906/66d9f13a/attachment.htm
2005 Aug 03
1
abline and linearity over groups
Dear R users, please can you help me understand the behaviour of abline using function lm.
I'm trying to learn linearity over groups. So I make three groups with 10 values each:
test=data.frame(cbind(
l=c(rnorm(10,0,30),rnorm(10,100,30),rnorm(10,200,30)),
t = c(rep(0,10), rep(1,10), rep(2,10))
))
when I do:
plot(test$l~test$t)
abline(lm(test$l~test$t))
the abline is a straight line