search for: logn

Displaying 20 results from an estimated 33 matches for "logn".

Did you mean: log
2010 Mar 24
0
optimize a joint lieklihood with mle2
Hi I'm trying to maximize a joint likelihood of 2 likelihoods (Likelihood 1 and Likelihood 2) in mle2, where the parameters I estimate in Likelihood 2 go into the likelihood 1. In Likelihood 1 I estimate the vector logN with length 37, and for the Likelihood 2 I measure a vector s of length 8. The values of s in Lieklihood 2 are used in the Likelihood 1. I have 2 questions: ##1 I manage to write the joint lieklihood (it's very long which is why I don't put it here), but I don't know how to write th...
2009 Oct 16
1
Modify the plot from countCDFxt
...rcent value (or decimal if that's my only option) at the equivalent of e^-1, e^-2, etc, but the values don't seem to line up correctly. I'd also like to replace the provided axis with my axis instead of just placing my axis out a line but I'm unsure how to do that. library(popbio) logNE <- log(erbr$NEast[-1]/erbr$NEast[-6]) countCDFxt(mean(logNE), var(logNE), nt=5, Nc=1317, Ne=200) axis(2, 0:1, labels = c(0.018, 0.050, 0.135, 0.368, 1), at = c(0.018, 0.050, 0.135, 0.368, 1), line =1) Year? ????? NEast NWest 2004? ????? 731?? 1732 2005? ????? 898?? 2004 2006? ????? 714?? 1130...
2010 Jun 02
1
lattice, xyplot, using "panel.segments" by just addressing one panel
...didn't work. Would be so great, if somebody could help me with that! That's the code, I used: library(lattice) library(latticeExtra) #[...] attach(mydata) attach(links) #containing the coordinates for the segments fx, fy, tx, ty fx <- fx fy <- fy tx <- tx ty <- ty xyplot(LogN~LogM|factor(surber), par.settings = list(strip.background = list(col = "transparent")), xlab = "Log M", ylab = "Log N", layout = c(6,5), aspect = 1, as.table = TRUE, strip=FALSE, panel=function(x,y){ panel.xyplot(x,y,pch=20,col="black", bg="transparent...
2005 Mar 28
2
problem with 1 dialing (recording says must dial 1 when I thought I did)
TRUNKMSD1=1 ; MSD digits to strip (usually 1 or 0) TRUNKMSD2=2 ; MSD digits to strip (usually 1 or 0) ; logn distance calls exten => _91NXXNXXXXXX,1,NoOp("Dialing: "${TRUNK}/${EXTEN:${TRUNKMSD1}}) exten => _91NXXNXXXXXX,2,Dial(${TRUNK}/${EXTEN:${TRUNKMSD1}}) exten => _91NXXNXXXXXX,3,Congestion When I dial a long distance number (916503270309 for example) I get the message (I think fro...
2015 Jan 19
3
Documentation link on new Firefox CentOS 7 splash screen
On 01/18/15 22:55, Peter wrote: > On 01/19/2015 10:51 AM, Tim wrote: >> Just my two cents: Anyone thought of asking Red Hat to use >> documentation? I think they are getting much from the community so >> to copy public accessible documentation when permitted by RH could be >> an easy way. >> >> Why not giving that a try? > > There's no need to ask
2017 Dec 01
2
Using Scalar Evolution to Identify Expressions Evolving in terms of Loop induction variables
...I expect - including ones that are not defined in terms of the loop induction variable. For instance in the following code: for(unsigned long int bid = 0; bid < no_of_queries; bid++){ unsigned long int currNode = no_of_nodes / 2; // process levels of the tree for(int i = 0; i < logN; i++){ if((knodes[currNode].key) > keys[bid]){ currNode = knodes[currNode].left_id; } else if ((knodes[currNode].key) < keys[bid]){ currNode = knodes[currNode].right_id; } else{ break; } } } I expect to extract a SCEV expressi...
2010 Apr 07
1
Small memory leak in CELT
Hi Jean-Marc, I hate to nitpick, but perhaps "logN" should be freed somewhere in celt_mode_destroy. Cheers, John Ridges
2011 Jun 03
1
Traversing KD-tree (or equivalent) for radius-based search
Hi, I'm trying to implement the DBSCAN algorithm to get O(N*LogN) complexity and I'd need a spatial tree of some sort (kd,r,bd..), or a function that computes radius-based search on spatial data, i.e. given a radius eps finds ALL the points which fall in the corresponding hypersphere centered on the current examined point. Is there a package with this...
2005 Jan 28
1
printing Problems in Samba 3.0.10
...talled components (duplex unit, second tray) and the long, friendly printer name. 3. Since today enumprinter returns for a single printer two printers: one with the friendly name, the other with the share name. If i open the properties dialog, they both show the same dialog for thr printer with the logn name. In smb.conf there is only a signle entry defined for this printer. Sample smb.conf is appended Thanks for your help Christoph -------------- next part -------------- [global] workgroup = CIP-POOL realm = WIWI.UNI-KARLSRUHE.DE netbios name = fwi-fortuna allow trusted domains = No winb...
2017 Dec 01
0
Using Scalar Evolution to Identify Expressions Evolving in terms of Loop induction variables
...in terms of the loop induction variable. For instance in the following > code: > > > for(unsigned long int bid = 0; bid < no_of_queries; bid++){ > > > unsigned long int currNode = no_of_nodes / 2; > // process levels of the tree > > for(int i = 0; i < logN; i++){ > > if((knodes[currNode].key) > keys[bid]){ > currNode = knodes[currNode].left_id; > } > else if ((knodes[currNode].key) < keys[bid]){ > currNode = knodes[currNode].right_id; > } > else{ > break; >...
2016 Mar 31
0
RFC: Large, especially super-linear, compile time regressions are bugs.
...ance of both compiler and compiled code for the main platforms. We do that to certain extent with the test-suite bots, but that's very far from ideal. So, I'd recommend we steer away from any kind of percentage or ratio and keep at least the quadratic changes and beyond on special flags (n.logn is ok for most cases). > Since you raise the discussion now, I take the opportunity to push on the > "more aggressive" side: I think the policy should be a balance between the > improvement the commit brings compared to the compile time slow down. This is a fallacy. Compile t...
2016 Mar 31
3
RFC: Large, especially super-linear, compile time regressions are bugs.
Hi, TLDR: I totally support considering compile time regression as bug. I'm glad you bring this topic. Also it is worth pointing at this recent thread: http://lists.llvm.org/pipermail/llvm-dev/2016-March/096488.html And also this blog post comparing the evolution of clang and gcc on this aspect: http://hubicka.blogspot.nl/2016/03/building-libreoffice-with-gcc-6-and-lto.html I will repeat
2015 Jan 19
0
Documentation link on new Firefox CentOS 7 splash screen
...it. > > By providing a link to the documentation we would no more be > distributing the documentation than Google would be distributing the > Weather Channel by providing a link to it in their search results. I don't see why we couldn't, or shouldn't modify it, though, so logn as we first make sure to comply with the rest of the license provisions, ie remove RedHat trademarks, give appropriate attribution and link to the original docs, then we can go ahead and modify it wiki-style so that it reflects the differences in CentOS. Peter
2014 May 15
0
lognormal frailty in frailtypack
Hi everyone I am attempting to estimate a model with a frailty effect distributed as a lognormal variable.I am using the following code: frailtyPenal(formula, data, ..., RandDist = "LogN") I get the following error message: Error in frailtyPenal(Surv(,) ~ + , : unused argument(s) (RandDist = "") What can I do? Thanks for the help [[alternative HTML version de...
2009 May 31
7
[mapstraction commit] r11 - Added functionality to automatically load scripts needed.
...- }; - script.addEventListener(''load'' ,evl ,true); - } - document.getElementsByTagName(''head'')[0].appendChild(script); - return; - }, - + loadScript: loadScript, + /** * * @param {Object} point @@ -334,6 +369,16 @@ logN: function(number, base) { return Math.log(number) / Math.log(base); }, + + /** + * returns array of loaded provider apis + * @returns {Array} providers + */ + getAvailableProviders : function () { + var providers = []; + for (var propertyName in apis) providers.push...
2006 Feb 02
19
[Bug 1149] Does not build on QNX
http://bugzilla.mindrot.org/show_bug.cgi?id=1149 Summary: Does not build on QNX Product: Portable OpenSSH Version: 4.3p1 Platform: ix86 OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: bitbucket at mindrot.org ReportedBy: kraai at ftbfs.org
2012 Oct 07
0
rsync patch
...pes. Typical usage in a data-recovery scenario where the filesystem isn't really screwed up would be something like: mount -o /dev/volume/bad /mnt/bad rsync -ai --ignore-existing --retry-errors=1 --retry-delay=30 --fill-byte=0xfe /mnt/bad /mnt/recover 2>&1 | tee /mnt/recover/recovery.logN I've written a crappy little script that scans the log files and installs or removes missing files so successive runs do not attempt to read files that are known to be bad. It isn't ready for prime-time, so I've not included it here but such a utility can be made in a few minutes if y...
2016 Aug 09
2
Samba 4.2.14 Group Policy (GPO) sync error
Am 09.08.2016 um 22:18 schrieb Achim Gottinger via samba: > > > Am 09.08.2016 um 21:48 schrieb Rainer Meier via samba: >>> I think the 10.0.06 entry was created during domain creation. I'd skim >>> thru dns records from an windows machine if possible and delete all >>> occurences of unwanted ip adresses. I assume the gpo's still can not be >>>
2011 Apr 21
0
C source code question (Robustbase edition)
...M.M.): This file contains fortran functions for two new robust estimators of scale denoted as Qn and Sn, decribed in Rousseeuw and Croux (1993). These estimators have a high breakdown point and a bounded influence function. The implementation given here is very fast (running in O(n logn) time) and needs little storage space. Rousseeuw, P.J. and Croux, C. (1993) Alternatives to the Median Absolute Deviation&quot;, Journal of the American Statistical Association, Vol. 88, 1273-1283. For both estimators, implementations in the pascal language can be obtained from the o...
2016 Mar 31
2
RFC: Large, especially super-linear, compile time regressions are bugs.
...part where I was mentioning that we're working in the tooling part and that I was waiting for it to be done to start this thread? > > So, I'd recommend we steer away from any kind of percentage or ratio > and keep at least the quadratic changes and beyond on special flags > (n.logn is ok for most cases). How to do you suggest we address the long trail of 1-3% slow down that lead to the current situation (cf the two links I posted in my previous email)? Because there *is* a problem here, and I'd really like someone to come up with a solution for that. >> Since yo...