Displaying 2 results from an estimated 2 matches for "20my".
Did you mean:
20mb
2007 Sep 11
1
what am I missing
x<-seq(-1,1,length=10)
y<-seq(-1,1,length=10)
a<-matrix(c(1,2,2,1),2,2)
b<-matrix(c(2,1,1,2),2,2)
fv<-function(x,y) {
m<-x*a+y*b
t<-m[1,1]+m[2,2]; d<-m[1,1]*m[2,2]-m[1,2]^2
return((t-sqrt(t^2-4*d))/2)
}
gv<-function(x,y) {
t<-x*(a[1,1]+a[2,2])+y*(b[1,1]+b[2,2])
d<-(x*a[1,1]+y*b[1,1])*(x*a[2,2]+y*b[2,2])-(x*a[1,2]+y*b[1,2])^2
return((t-sqrt(t^2-4*d))/2)
}
2003 Sep 11
1
samba(PDC, machine A) + LDAP (machine B)?
Hello=20all,
=20=20I=20am=20wondering=20if=20anyone=20successfully=20built=20samba=20PDC=20=
on
mahine=20A=20and=20used=20LDAP=20on=20machine=20B=20for=20authentication?
=20=20Because=20now=20before=20creating=20a=20samba=20account,=20one=20must
create=20an=20unit=20account,=20right?
=20=20My=20goal=20is=20as=20follows:
1.=20Master=20LDAP=20(server=20A):=20responsible=20for=20the=20master=20copy=
of=20the=20account=20information
2.=20Slave=20LDAP=20(server=20B):=20synchronizing=20the=20database=20with
the=20Master=20LDAP=20through=20LDAP's=20slurpd
3.=20Samba=20PDC=20server=20(ser...