Displaying 6 results from an estimated 6 matches for "drowing".
Did you mean:
growing
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
2003 Feb 18
1
problems with ldap tls
Hallo!
I have a problem using samba with ldap and tls:
starting ldap using slapd -d1 -h "ldaps://0.0.0.0/"
Why does not it work?
using ldap ssl = no working
thanx
Here my smb.conf:
ldap server = localhost
#ldap port = 389
ldap port = 636
ldap suffix = o=zolnott,dc=de
ldap admin dn = uid=ldaproot,o=zolnott,dc=de
ldap filter =
2003 Sep 29
1
Problems with homes after updating to 3.0 (debian)
Hello!
After upgrading 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
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