search for: compair

Displaying 20 results from an estimated 180 matches for "compair".

2018 Aug 31
0
compairing doubles
El vie., 31 ago. 2018 a las 15:10, Felix Ernst (<felix.gm.ernst at outlook.com>) escribi?: > > Dear all, > > I a bit unsure, whether this qualifies as a bug, but it is definitly a strange behaviour. That why I wanted to discuss it. > > With the following function, I want to test for evenly space numbers, starting from anywhere. > > .is_continous_evenly_spaced <-
2018 Sep 03
2
compairing doubles
Maybe a new Operator could be defined for a fast and easy double Comparison: `~~` `~~` <- function (e1, e2) all.equal(e1, e2) And document it properly.
2018 Aug 31
0
compairing doubles
how about is_evenly_spaced <- function(x,...) all.equal(diff(sort(x)),...) (use ellipsis to set tolerance if necessary) Op vr 31 aug. 2018 om 15:46 schreef Emil Bode <emil.bode at dans.knaw.nl>: > Agreed that's it's rounding error, and all.equal would be the way to go. > I wouldn't call it a bug, it's simply part of working with floating point > numbers, any
2018 Aug 31
0
compairing doubles
Ah, my bad, you're right of course. sum(abs(diff(diff( sort(x))))) < eps for some reasonable eps then, would do as a oneliner, or all(abs(diff(diff(sort(x)))) < eps) or max(abs(diff(diff(sort(x))))) < eps -Mark Op vr 31 aug. 2018 om 16:14 schreef I?aki Ucar <iucar at fedoraproject.org>: > El vie., 31 ago. 2018 a las 16:00, Mark van der Loo > (<mark.vanderloo at
2015 Mar 23
3
samba4 check database replication script. samba-check-db-repl.sh
...? I?have tested with 2 DC's , if there people with more than 2 DCs, and want to test for me, would be great. I tested on debian wheezy, but should work on any apt-get capable os.? ( but not?tested ) ? What it does.. - auto detects the?DC in you network. -?detects the DC met FSMO roles and compairs this db with all other DC's.? ??? ( based on : 1 DC is running all the FSMO roles ) -?compaires with different settings. ??? samba-tool drs showrepl and? samba-tool?ldapcmp --filter="whenChanged" - you can set these?check on or off per check. - automatic checks for needed program...
2018 Aug 31
2
compairing doubles
Le 31/08/2018 ? 16:25, Mark van der Loo a ?crit?: > Ah, my bad, you're right of course. > > sum(abs(diff(diff( sort(x))))) < eps > > for some reasonable eps then, would do as a oneliner, or > > all(abs(diff(diff(sort(x)))) < eps) > > or > > max(abs(diff(diff(sort(x))))) < eps Or with only four function calls: diff(range(diff(sort(x)))) < eps
2017 Mar 21
1
Public share ask for a password
Well, im never trying to change your optionion Rowland, i wont dare.. > Just what has an init system got to do with mounting a filesystem ?? Compaired to fstab, i get a better result with my nfs mounts. Before, somethimes, with the fstab setup, when logging in on ssh on an automounted userhome dir, with NVSv4 kerberized. Did fail for now and then. Now with the systemd, i didnt have any fails. I dont know exact the difference, why, but i like...
2004 May 27
4
Sorting Data?
...w I want to seperate the mothers (M) and daugthers (D) of the family with all the data in all other fields. How can I do that? The 'Code' Tells me which mother belongs to which dougther. I want to make a matrix where I have the mothers on one and the daugthers on the other axis and compair the distance of every question (F1...F17) and the distance of the sum of this questions. The questions are semantic differencials, 5 values. F4, and F7 must have reverse polarity in this case. Hm. How do I have to do now? Thanks, Martin
2018 Aug 31
2
compairing doubles
El vie., 31 ago. 2018 a las 16:00, Mark van der Loo (<mark.vanderloo at gmail.com>) escribi?: > > how about > > is_evenly_spaced <- function(x,...) all.equal(diff(sort(x)),...) This doesn't work, because 1. all.equal does *not* return FALSE. Use of isTRUE or identical(., TRUE) is required if you want a boolean. 2. all.equal compares two objects, not elements in a vector.
2018 Aug 30
4
compairing doubles
Dear all, I a bit unsure, whether this qualifies as a bug, but it is definitly a strange behaviour. That why I wanted to discuss it. With the following function, I want to test for evenly space numbers, starting from anywhere. .is_continous_evenly_spaced <- function(n){ if(length(n) < 2) return(FALSE) n <- n[order(n)] n <- n - min(n) step <- n[2] - n[1] test <-
2018 Aug 31
3
compairing doubles
Agreed that's it's rounding error, and all.equal would be the way to go. I wouldn't call it a bug, it's simply part of working with floating point numbers, any language has the same issue. And while we're at it, I think the function can be a lot shorter: .is_continous_evenly_spaced <- function(n){ length(n)>1 && isTRUE(all.equal(n[order(n)], seq(from=min(n),
2003 Dec 09
4
was FXO cards
...he idea of running a channel bank. It just seems unecessary, and more crap to break, set up, and buy. DIalogic 4 and 12 port cards are expensive. The 12 port prohibitively so, so I think I would be better off getting 2 of the 4 port cards. I have found them for <900$ apiece on ebay. That compairs as: Case 1 Channel bank Asterisk box: 500$ (provably less than this, as it is a minimal machine) T100P card: 500$ Channel Bank 600$ (actually, from what I can find, provably more like 1000$ before I am done) Phones: I am going to go with the Mitel Networks 5055, they are about 400$ apiece....
2004 Aug 06
2
Icecast's YP bugs
...y that needs to be provided because currently it's "breaking protocol" (as defined by Oddsock's Icecast2 YP document) by sending add requests without a stream name. go back a few emails, see where this came from.. one of three bugs in Icecast's YP support. A fairly minor one compaired to the memory leak bug, but still very problematic for us. <p> -------------- next part -------------- A non-text attachment was scrubbed... Name: part Type: application/pgp-signature Size: 188 bytes Desc: not available Url : http://lists.xiph.org/pipermail/icecast-dev/attachments/20030625...
2019 Feb 22
4
Debian 9.8 and vanbelle-repos
...dmapd.conf Set these to settings. Domain = interal.dnsdomain.tld Local-Realms = YOURREALM Reboot Ive few servers left to update, i'll do that now and report back. > > Could debian 9.8 have broken something by changing a library or so? Not that i know but the fix list was pretty big compaired to previous ones. But why are you having problems and im not, ill go through some servers here, see if i can find something. Greetz, Louis
2020 Oct 28
2
GPO fail and sysvol perm errors
> > However the acls via getfacl for the two GPO's are identical. Your sure? > I don't know if that will be problematic down the road or not. No, thats fine. But run on the 2 folders : samba-tool ntacl get --as-sddl FOLDERHERE Compair the 2 outputs. There must be a difference. Well, at least it works now for you.. Greetz, Louis
2006 Feb 20
4
redirect_to_remote ?
Is there a method of the type redirect_to_remote which I could use in place of redirect_to ? Or is there a good way of puting in place such a thing? ideally this would act the same as link_to_remote does compaired with link_to -- Posted via http://www.ruby-forum.com/.
2004 Feb 08
1
one-line fix reduces distortion
Ok maybe it's just my imagination, but it looks like the one-line "duh" fix I committed from Andrej Vakrcka <ander@cauldron.sk> this week DRAMATICALLY reduces distortion in encoded files. Take a look and compair. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'theora-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe message...
2014 Jul 09
1
samba wiki ( troubleshooting )
Hai, ? i was reading : http://wiki.samba.org/index.php/Samba_AD_DC_Troubleshooting And im missing the part about the?compair of : ? ls -al /var/lib/samba/private/sam.ldb -rw------- 1 root root 4251648 Jun? 6 09:05 /var/lib/samba/private/sam.ldb ls -al /var/lib/samba/private/sam.ldb.d/* -rw-rw---- 2 root bind? 4251648 Jul? 9 14:08 /var/lib/samba/private/sam.ldb.d/DC=DOMAINDNSZONES,DC=ROTTERDAM,DC=BAZUIN,DC=NL.ldb -rw-r...
2015 Mar 24
0
samba4 check database replication script. samba-check-db-repl.sh
...than 2 >DCs, and want to test for me, would be great. >> I tested on debian wheezy, but should work on any apt-get >capable os. ( but not tested ) >> >> >> What it does.. >> - auto detects the DC in you network. >> - detects the DC met FSMO roles and compairs this db with >all other DC's. >> ( based on : 1 DC is running all the FSMO roles ) >> - compaires with different settings. >> samba-tool drs showrepl and samba-tool ldapcmp >--filter="whenChanged" >> - you can set these check on or off per c...
2017 Jan 18
1
AD attibutes of the (in this case) member servers differences.
Hai,   Im setting up a new proxy with winbind en kerberos auth. So far everything ok but now im setting up my nfsv4 (with automount with systemd) for my user login on that server.   For the new setup i compaired my old proxy with my new proxy. I noticed the old proxy is missing some attibutes in the AD object.   For example, Samba member1 ( installed as 4.3.x ) upgraded to 4.5.3 here im missing :  msDS-SupportedEncryptionTypes Samba member2 ( installed as 4.5.3 ) is haveing them.   With the upg...