Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
290 views

Generating 'neighbours' for users based on rating

I'm looking for techniques to generate 'neighbours' (people with similar taste) for users on a site I am working on; something similar to the way last.fm works. Currently, I have a compatibilty ...
8
votes
3answers
133 views

How to check efficiently if two characters are neighbours on the keyboard?

I want to develop a soft keyboard for Android and already got a autocorrect algorithm which makes suggestions based on the fact if the input character and the character of a word from the dictionary ...
8
votes
5answers
1k views

Spatial Data Structures for moving objects?

I was wondering what is the best data structure to deal with a lot of moving objects(spheres, triangles, boxes, points, etc)? I'm trying to answer two questions, Nearest Neighbor and Collsion ...
3
votes
3answers
121 views

How many combinations of k neighboring pixels are there in an image?

I suck at math, so I can't figure this out: how many combinations of k neighboring pixels are there in an image? Combinations of k pixels out of n * n total pixels in the image, but with the ...
3
votes
1answer
1k views

CakePHP: find neighbors, order on 'name' or 'order'

I have a list of ordered items, ordered according to the int field order. I'm creating a gallery in CakePHP 1.2 that has a prev and next button and those should link to the previous and next item ...
1
vote
2answers
74 views

Array diagonal neighbourhood analysis and sort

I've been battling with this for some time and seem to be getting nowhere. The set up is so; I have a 2D array. For this array I need to iterate through each value and return the diagonal neighbours ...
1
vote
2answers
51 views

Determining a JComponent's immediate neighbors in a FlowLayout

I have a JPanel that uses a FlowLayout and contains many JButtons. The buttons are in a 2-dimensional grid (by the FlowLayout). The JPanel can be resized, and, of course, when it is, the location of ...
1
vote
1answer
460 views

CakePHP find('neighbors') use [next] and [prev] from array

I am trying to get the neighbors Ids of the current Id. What I have below works, but I cannot separate the [prev] from the [next] link. The function in the controller looks as follows: function ...
1
vote
5answers
1k views

Select surrounding rows php/mysql

I want to select a group of rows around a row matched on conditions, ie select a row and then return 5 records before and after it. More info as requested (sorry bout that!) Ok, so the table records ...
0
votes
1answer
43 views

Finding markers within a SQL Server database from a google maps startingpoint with a radius

I'm new to geodata and I am playing around with google maps, asp.net and SQL Server, but I'm a bit stuck. I got a SQL Server table with markers with there longitude and latitude. And I want to get ...
0
votes
1answer
72 views

ipv6 neigh entries getting failed

I have bunch of ipv6 neigh entries which are failed: 6000::2828:2802 dev eth2 lladdr 00:1f:a0:02:0e:b2 STALE 7000::1e1e:1e01 dev eth1 FAILED 8000::1e1e:1e01 dev eth1 FAILED 4000::1414:149e dev eth2 ...
0
votes
0answers
59 views

C# Help with enumerable range neighbours

I need help with, int[,] array = new int[rows, columns]; int refx = row; int refy = column; var neighbours = from x in Enumerable.Range(refx - 1, 3) from y in Enumerable.Range(refy ...
0
votes
2answers
293 views

Problem using CakePHP's FormHelper to Save/Edit data sequentially with one action

I'm trying to use CakePHP to create a data entry form like similar to MS Access. The Form in my view file will always post data to a single action, and will not have a "Submit" button. So, there's no ...
0
votes
0answers
97 views

Pivot grid drill-down: should neighbour rows disappear or stay collapsed?

When doing a drill-down operation on one row, that row gets expanded to its lower hierarchy level. What about its neighbour rows - should they disappear or just stay collapsed? What's the industry ...
0
votes
1answer
411 views

Implementing CakePHP find() operations in datasource

I'm implementing a custom datasource in my CakePHP application, I've implemented the basic functions for a datasource (read(), listSources(), describe()). The datasource uses Xml as input and I would ...
0
votes
3answers
150 views

Any references on how to implement quadtrees with periodic limits?

I have spatial data - (x, y) points on a plane - which I'm partitioning using quadtrees. The idea is to find which points are neighbors to a given (a, b) point. The points are neighbors if there some ...