search for: cll

Displaying 10 results from an estimated 10 matches for "cll".

Did you mean: all
1997 Jul 28
1
R-alpha: R 0.50.a1 problem
Here's something really strange. ******************************************************** R> x <- 1:5 R> x [1] 1 2 3 4 5 R> test1 function (x) { structure(x, call = sys.call()) } R> test1(x) [1] 1 2 3 4 5 attr(,"call") test1(x) R> test2 function (x) { attr(x, "call") <- sys.call() x } R> test2(x) Error: stack overflow
2012 Aug 24
2
[LLVMdev] Stop opt from producing 832 bit integer?
...= (*c >> 3) & 0x7;* * printf("%.2d %.2d %.2d\n", xmc[19], xmc[22], xmc[24]);* *}* I used the following commands to produce the llvm optimized code: clang -std=c89 -ccc-host-triple mipsel-unknown-linux -msoft-float -ccc-clang-archs mipsel -S -emit-llvm test-.c -o test.cll opt -S -O3 test.cll -o test.ll The 832 bit integer is introduced by OPT: *; ModuleID = 'test.cll'* *target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-n32" * *target triple = "mipsel-unknown-linux"* *@.str =...
2006 Jul 31
2
**NewBIE** CSS reference in view pages...
I''m a newbie...I have this CSS file created STYLES.CSS which i want to cll into every page under views...how can i do that...<link> tag doesn''t seem to be working here...any help is greatly appreciated...thanks! -- Posted via http://www.ruby-forum.com/.
2006 Sep 22
2
behavior of [<-.foo
Can someone help me understand the following behavior of "[<-" ? If I define a simple class based on a matrix, the [<- operation only inserts into the first column: > x <- matrix(rnorm(10),nrow=5,ncol=2) > class(x) <- "foo" > "[<-.foo" <- function(x, i, j, value) { + if(missing(i)) i <- 1:nrow(x) + if(missing(j)) j <-
2011 Oct 16
1
nlrq {quantreg}
...ed any answer. I need to estimate the quantile regression estimators of a model as: y = exp(b0+x'b1+u). The model is nonlinear in parameters, although I can linearise it by using log.When I write: fitnl <- nlrq(y ~ exp(x), tau=0.5) I have the following error: Error in match.call(func, call = cll) : invalid 'definition' argument Is there any way to estimate this model, or should I accept the following change: fitnl <- rq(log(y) ~ x, tau=0.5) ? Thanks in advance! Best, Julia [[alternative HTML version deleted]]
2012 Oct 01
1
Problem with nls regression fit
...gestions are welcome > beta <- 3.5 > d <- seq(0.1,62.5,0.1) > y <- exp(-beta*d) > y1 <- y > x <- read.table("epidist.txt", header = TRUE) > data.nls <- as.data.frame(cbind(y1,x)) > #attach(data.nls) > nls.fit <- nls(y1~dist,data.nls) Error in cll[[1L]] : object of type 'symbol' is not subsettable Best [[alternative HTML version deleted]]
2004 Jan 21
1
silhoutte.default bugs
...ograms I use (snob) assigns more or less arbitrary integer ids to clusters starting from 3! (clusters 1 and 2 have special meaning in snob). the modified code fixing both problems is included below, changes are commented. best Murad silhouette.default <- function (x, dist, dmatrix, ...) { cll <- match.call() if (!is.null(cl <- x$clustering)) x <- cl n <- length(x) if (!all(x == round(x))) stop("`x' must only have integer codes") k <- length(clid <- sort(unique(x))) if (k <= 1 || k >= n) return(NA) i...
2003 Feb 06
2
function 'silhouette' in package 'cluster'
Dear all, I am trying (without much success) to use the fuction 'silhouette'. Would anyone encountered that before (or would know where I am wrong ?) Please find below the R ouput. Thanks in advance, L. > s <- silhouette(ct, as.dist(metric)) Error in "[<-"(*tmp*, iC, "sil_width", value = s.i) : number of items to replace is not a multiple of replacement
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...prietary(this.api), ne.toProprietary(this.api))); }, addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) { @@ -237,11 +248,12 @@ LatLonPoint: { toProprietary: function() { - return new CM.LatLng(this.lat,this.lon); + var cll = new CM.LatLng(this.lat,this.lon); + return cll; }, - fromProprietary: function(googlePoint) { - // TODO: Add provider code + fromProprietary: function(point) { + return new mxn.LatLonPoint(point.lat(),point.lng()); } }, @@ -249,19 +261,...
2007 Sep 06
0
Asterisk 1.4 Ignoring SIP ACK's on 487 Responses
...does is direct requests to one asteisk server or another) and the re-transmits do not occur on 1.2.17 which is the current verion I have in use on my production servers. The retransmits do not occur on a 200 Ok Response. When the INVITE is cancelled the CANCEL request is acted on correctly and the cll is cancelled and the only problem is the 6 retransmits of the INVITE response everytime a call is cancelled. I've confirmed that the ACK request is getting through to the Asterisk 1.4 server and also checked that all the required transaction fields in the ACK are correct (Call-Id, From and Via...