search for: relativer

Displaying 20 results from an estimated 23 matches for "relativer".

Did you mean: relative
2008 Sep 21
1
Searching a relativ maximum of a matrix
Hello R users, is there a possibility to get the relativ maximum of a matrix? To get the absolut maximum I use max(matrix) For example: The absolut maximum of this matrix is 6[3,6], but the relativ maximum is 6[3,6] and 4[7,6], because both values are the highest value in comparison to their eight neighbours values. [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [1,] 1 1 2 2 2
2004 May 03
2
tincd.exe -K (sorry if present twice)
Hello, can one specify the priv/pub key filepath without the -c switch. I need some more controll over where the keys get stored. tincd.exe, without the -n switch stores it's keys in a static path. Relativ pathes would help. thx, Axel
2019 Jan 21
3
samba group root:"domain users" not found
getent group ROBINOOD\\'Domain Users' ROBINOOD\domain users:x:10513: but if i insert  winbind use default domain = yes in my smb.con and i tent ssh puma(local account) witch relatived password the system waits without getting the command prompt Il 21/01/2019 11:07, Rowland Penny via samba ha scritto: > On Mon, 21 Jan 2019 10:37:32 +0100getent group ROBINOOD\\'Domain Users'
2009 Dec 31
1
readCitationFile encoding
Hi, does anybody know, how to enforce a certain encoding for readCitationFile()? Haven't found any usable documentation for this :( E.g.: basecit <- system.file("CITATION", package="base") source(basecit, echo=TRUE, encoding="8859-1") readCitationFile(basecit) BTW: 'make check' is a relativ long running task and if one changes a source file, all
2011 Jul 14
2
Add a density line to a cumulative histogram - second try
...he histograms here: http://www.jochen-bauer.net/downloads/histo-cumulative-density.png Source: # Histogramm histo <- hist( hgd$V1, freq=FALSE ) # Dichte-Sch?tzer-Funktion reinzeichnen denspoints <- density( hgd$V1 ) lines( denspoints, col="GREEN", lwd=2 ) # Kumulative Verteilung relativer H?ufigkeiten relcum <- cumsum( histo$counts ) / sum(histo$counts) barplot( relcum, names.arg=round( histo$mids, 2), col="green", ylab="Wahrscheinlichkeit") # Kumulative Dichtefunktion ? Thanks in advance - Jochen -- View this message in context: http://r.789695.n4.nabble.c...
2019 Jan 21
0
samba group root:"domain users" not found
On Mon, 21 Jan 2019 11:27:04 +0100 marco pirola via samba <samba at lists.samba.org> wrote: > getent group ROBINOOD\\'Domain Users' > ROBINOOD\domain users:x:10513: > > but if i insert  winbind use default domain = yes in my smb.con and i > tent ssh puma(local account) witch relatived password the system > waits without getting the command prompt > Have you
2007 Aug 20
0
IE7 invalid argument
I am getting invalid argument from inside Position.relavitize on IE7. Using 1.5.1.1 of Prototype. relativize: function(element) { element = $(element); if (element.style.position == ''relative'') return; Position.prepare(); element.style.position = ''relative''; var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
2006 Feb 18
0
Move element into view
Hello, I am in fly-by mode as I am still more than busy, so I just dumb this one out for anyone interested. Adapt it for your needs if you like it. This effect is similar to ScrollTo, but scrolls the viewport vertically the minimal amount necessary to bring the element into view. Usage: new Effect.ScrollToFullView(element, {duration: 0.6, offset: 10}); Offset is the distance in pixel to the
2005 Dec 03
0
dragdrop patch that enables dragging from and to divs with overflow:scroll
Hi all, this is a patch for 1.5_rc5 I noticed that I was not able to drag stuff out of scrolling divs. When I tried to drag it out, the draggable would remain in that div and the scrollbars would adapt to the bigger content of the div. This patch extends draggable with an option :tofront. When it is set to true, the draggable will be moved to the document body while keeping its position on the
2012 Mar 05
1
If function error: missing value where TRUE/FALSE needed
Hello! I am trying to get a logic estatement in R using the if function, but it is all the time comming and error, I have tryied different methods but nothing is working the sentence is the following: dispersal[1] <- if (any (relativenes[1] < cost)) ((relativenes[1]- cost)/(relativenes[1]- cost*cost)) else 0 for (i in 2: time){ dispersal[i] <- if (any
2008 Mar 16
8
include a page in another
Hi, for my isbn plugin, I''m wishing to incldue generated isbn pages in caller pages (the ones with <isbn value=""> tags). But I want my isbn page to be processed before for its tags to be transformed (like the relocatable or other ones). Besides, i do not want its header to be included. Is there an easy solution for that, or should I do the work myself ? -- Nicolas
2019 Jan 21
2
samba group root:"domain users" not found
Debian streatch, package installated: samba winbind smbclient libpam-winbind libnss-winbind libpam-krb5 acl attr krb5-config krb5-user ntp net ads testjoin: Join is OK getent group 'Domain Users' it does not return anything What OS ? debian streatch Il 21/01/2019 10:22, Rowland Penny via samba ha scritto: > On Mon, 21 Jan 2019 08:37:43 +0100 > marco pirola <mapirola81 at
2019 Jun 03
3
Difficulty with samba after updating from 3.6.6 to 4.9.0.0
Server - HPUX 11.31 Clients - WIN7 WIN10 After upgrading my versions to 4.9.0.0 I've noticed that we're unable to connect to our AD joined SMB HP-UX Server any longer. Could someone tell me where to begin digging in release notes between 3.6.6-4.9.0.0 to find out what changed in the smb.conf file that would be causing our problems? Here's a somewhat similar .conf output global]
2005 Feb 18
3
MultiLine Sip Phones
Sorry Newbie asking everyones option. I am setting up a couple of small asterisk phone systems for my work, I started using some snom 190 and bt102 sip phones (the bt102 works really well with iLBC), but the complaint from my workmates is there is no way to see if other people are on there phone or not, or what lines are being used. The snom 190 only has 5 function keys, the snom 220 seems a bit
2000 Feb 02
1
Large data sets and aggregation
I've noticed quite a few messages relating to large data sets bedeviling R users, and having just had to program my way through one that actually caused a "Bus error" when I tried to read it in, I'd like to ask two questions. 1) Are there any facilities for aggregation of data in R? ( I admit that this will not do much for the large data set problem immediately) 2) Is there any
2023 Feb 28
2
add user failed check log
Good morning, On Tue, 2023-02-28 at 01:07 +0000, Coolvibes Reloaded wrote: > i'm trying to config the usr authentication > but when i goto add myself into the admin part > i get add user failed check log? > > so i did and i'm getting this > [...] > [2023-02-28 00:46:16] EROR auth_htpasswd/auth_htpasswd.c No filename > given in options for authenticator. >
2007 Jul 31
6
Using Effect.Move() while maintaining the elements DOM order
Hi there, is it possible to maintain the elements order in DOM when using Effect.Move()? Currently the Move effect will change the element position (using top and left style attrs), this works quite well too, but what I''d like is to change the elements position as well. Consider the following example: html: ... <div id="a">First</div> <div
2005 Nov 04
19
Drag & Scroll
When using drag and drop, the browser window will not scroll if you move the mouse off the page. This makes it very difficult, if not impossible to create certain types of web applications. I know this has been mentioned before and is on the Wish List, but it''s very frustrating. If you look at this other Javascript library called "Drag''nDrop & DHTML Library"
2023 Feb 28
1
add user failed check log
i'm trying to config the usr authentication but when i goto add myself into the admin part i get add user failed check log? so i did and i'm getting this [2023-02-28 00:46:16] INFO admin/admin.c Received admin command manageauth.xsl on mount "/live.mp3" [2023-02-28 00:46:16] EROR auth_htpasswd/auth_htpasswd.c No filename given in options for authenticator. [2023-02-28
2009 May 12
7
Trying to install windows as guest
Hello everyone, I am trying to install windows xp as a guest OS. It runs through the installer just fine, but every time I reboot, it keeps booting back to the installer. Here is my config: ------------<code>--------------------------------------- kernel="/usr/lib/xen/boot/hvmloader" builder="hvm" memory=512 device_model=''/usr/lib/xen/bin/qemu-dm''