search for: gety

Displaying 20 results from an estimated 31 matches for "gety".

Did you mean: get
2000 Jun 29
2
Local Moran's I / Getis and Ord and Rousseauw Cluster Algorithms
Sorry for the repetition, unless I've got bad deja vu this questions been asked before but I couldn't turn up an answer on CRAN. Is there already any code in existence for local dependence measures such as Moran's I or Getis and Ord G? Also, S-Plus has a number of interstingly named Cluster Algorithms based on some previous stand-alone fortran algorithms (agnes, daisy etc.) which
2004 Jul 14
0
Ord-Getis O statistics
Hi list, I am wondering if anybody knows if the Ord-Getis O statistics of local spatial autocorrelation in the presence of the global spatial association is implemented in any of the R packages - and of course in which package ;-)). I am not interested in Getis-Ord G statistics, for now. Thank you in advance, Monica Monica Palaseanu-Lovejoy University of Manchester School of Geography
2014 Oct 13
2
[LLVMdev] Unexpected spilling of vector register during lane extraction on some x86_64 targets
Hello, Depending on how I extract integer lanes from an x86_64 xmm register, the backend may spill that register in order to load scalars. The effect was observed on two targets: corei7-avx and btver1 (I haven't checked other targets). Here's a test case with spilling/no-spilling code put on conditional compile: #if __SSE4_1__ != 0 #include <smmintrin.h> #else #include
2008 Oct 23
1
Getting the panel location of a xyplot matrix using a mouse click in a GDCanvas
...y must be implemented in the GDCanvas because trellis.focus does work correctly in JGR) I wish to handle all the user GUI events in Java to evaluate different commands in an Rengine. With a GDCanvas, it's straightforward to get the x y position of a mouse click with the standard e.getX() and e.getY() So my handler would look like: public void mouseClicked(MouseEvent e) { System.out.println("Clicked" + e.getX() + " " + e.getY()); System.out.println(re.eval("t = trellis.focus()")); System.out.println(re.eval("t")); // I...
2006 Apr 07
3
Pointer position on keypress event?
Hi. Is there any straightforward way to tell pointer position (x, y) upon keypress? In original wxWidgets, wxKeyEvent supports GetX() and GetY() methods, but wxRuby''s KeyEvent object does not have one. I also checked with event.methods and event.instance_variables. Do I need to keep track of pointer position by evt_motion? -- Taisuke Yamada <tyamadajp@spam.rakugaki.org>, http://rakugaki.org/ 2268 E9A2 D4F9 014E F11D 1DF7...
2017 Oct 27
2
Less aggressive on the first allocation of CSR if detecting an early exit
When compiling C code below for AArach64, I saw that shrink-wrapping didn't happen due to the very early uses of CSRs in the entry block. So CSR spills/reloads are executed even when the early exit block is taken. int getI(int i); int foo(int *P, int i) { if (i>0) return P[i]; i = getI(i); return P[i]; } It's not that hard to find such cases where
2006 Jan 02
2
mouse position without event
Hello, Is it possible somehow to get mouse coordinates without using the event mechanism ? I need to get the current mouse position to initialize some div position, but not at page load Tarek _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2017 Oct 30
2
Less aggressive on the first allocation of CSR if detecting an early exit
On 2017-10-27 19:50, Hal Finkel wrote: > On 10/27/2017 03:32 PM, Jun Lim via llvm-dev wrote: > >> When compiling C code below for AArach64, I saw that shrink-wrapping >> didn't happen due to the very early uses of CSRs in the entry block. >> So CSR spills/reloads are executed even when the early exit block is >> taken. >> >> int getI(int i); >>
2018 May 05
1
error in chol.default((value + t(value))/2) : , the leading minor of order 1 is not positive definite
...gl(3,10*60) levels(TRT) <- c("CTRL","DIAB","HYPER") AA1 <- AA + c(rep(0,10),rep(10,10),rep(-10,10)) BB1 <- BB + c(rep(0,10),rep(5,10),rep(-5,10)) Gg1 <- gg1 + c(rep(0,10),rep(0.01,10),rep(-0.01,10)) Gg2 <- gg2 + c(rep(0,10),rep(0.005,10),rep(-0.005,10)) getY <- function(A,B,g1,g2) { Y? <- A*exp(-g1*Time) + B*exp(-g2*Time) Y <- Y + rnorm(60,0,20) } YY <-? c() for (i in 1:N) YY <- c(YY,getY(AA1[i],BB1[i],Gg1[i],Gg2[i])) TT <- rep(Time,N) RAT <- gl(N,length(Time)) dats? <- data.frame(RAT,TRT,TT,YY) Dats <- dats names(Dats)[c(3,4...
2006 Oct 17
2
Inaccurate CDRs
Hello, i have call time irregularites in my asterisk CDR. I a currently using a mysqly backent to save CDR records and use this to generate bills at the end of each month. However, my users are complaining that they gety charged for even uncompleted calls (i.e. calls they make whaich have already be setup but canclled). i have noticed that only 'AWNSERED' and 'Busy' show up in my call disposition colume. I have also noticed that both the call duration and the billsec are always equal. here is my set...
2012 Jul 19
3
Finding the last value before a certain date
Hello all, I have a dataframe that looks like this: head(df) date y 1 2010-09-27 1356 2 2010-10-04 1968 3 2010-10-11 2602 4 2010-10-17 3116 5 2010-10-24 3496 6 2010-10-31 3958 I need a function that, given any date, returns the y value corresponding to the given date or the last day before the given date. Example: Input: as.Date("2010-10-06"). Output: 1968 (because the
2017 Oct 31
2
Less aggressive on the first allocation of CSR if detecting an early exit
On 2017-10-30 21:20, Hal Finkel wrote: > On 10/30/2017 12:20 PM, junbuml at codeaurora.org wrote: >> On 2017-10-27 19:50, Hal Finkel wrote: >>> On 10/27/2017 03:32 PM, Jun Lim via llvm-dev wrote: >>> >>>> When compiling C code below for AArach64, I saw that shrink-wrapping >>>> didn't happen due to the very early uses of CSRs in the entry
2012 Aug 16
1
[LLVMdev] Question on C++ code completion - function parameter list
Hello, Using c-index-test.exe I'm learning clang code completion for C++. I have an issue to get the current parameter list of a C++ function. While it works for a C function, I get nothing which can be evaluated in case of C++ function. I use the following command line: "c-index-test -code-completion-at=x.cpp:9:10 -x c++ -fsyntax-only -x.cpp" Where: - "9:10" is
2006 Sep 12
1
Patch to wxMouseEvent.h
This patch just applies some const tags that were missing (does this affect anything at all?) and removes a definition that was causing a conflict. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2011 Sep 22
1
R.oo: do work on data member at construction
...omplex I'll run into issues. setConstructorS3("MyClass", function(x=NA,y=NA,...) { this <- extend(Object(), "MyClass", .x=x, .y=y, .z=paste(x,y) ) }) setMethodS3("getX", "MyClass", function(this, ...) { this$.x; }) setMethodS3("getY", "MyClass", function(this, ...) { this$.y; }) setMethodS3("getZ", "MyClass", function(this, ...) { this$.z; }) > mc = MyClass('a','b') > mc$x [1] "a" > mc$y [1] "b" > mc$z [1] "a b" Thanks, ben [...
2011 Jul 12
1
Subsetting NaN values in localG()
Hi, I'm currently trying to calculate local Getis-Ord Gi* statistics for a 169x315 cell matrix of temperature values, below is the code I currently have (diffc is the data vector I am removing NaN values from, and I am moving said values to diffD; -999 represents NaN values; id contains ID values for cells I want to use in the calculation, which I already know to contain 25064 values):
2007 Oct 15
1
Distance matrix in SpDep-package
Hello everybody, I would like to use the SpDep-package (especially the Local Moran index analysis and the Getis-Ord statistics) in R for analysing my data. However, I don't have x-y coordinates, but my data is in a distance matrix format. Is it possible to use the SpDep package with predefined distances as well instead of letting the program determining the distance itself by the function
2013 Apr 25
1
estadistica espacial
Hola Comunidad se que este grupo es para asuntos de R. Pero me asalta la duda... *Estoy comenzando un trabajo de estadística espacial sobre el delito robo, es mi trabajo de grado ;* Estoy recolectando documentación, que me sirva para el marco teórico de la tesis ,trabajaré sobre los software gvsig y crimestat (ambos libres): Hasta ahorita tengo pensado obtener: ü Estadísticos descriptivos
2003 Apr 29
3
unexpected tag 25 on OSX
Hello, I am trying to set up a rsync backup server. So far I have it working with my linux machines. I am now trying to get it to work with OSX.2. From my backup server i am executing "rsync --delete --progress --stats -avRe ssh --exclude=/Volumes/ --numeric-ids client.mydomain" and using an ssh key with the command="rsync --server --sender -vlogDtprR --delete --numeric-ids .
2017 Nov 10
2
Less aggressive on the first allocation of CSR if detecting an early exit
On 2017-11-10 07:47, Nemanja Ivanovic wrote: > One thing I thought about doing a while back and never really wrote a > POC for is the following: > - Make FirstCSRCost a property of the MachineBasicBlock (or create a > map of MBB* -> FirstCSRCost) > > - Implement a pre-RA pass that will populate the map as follows: > > - Identify all blocks with calls > > -