The SQL intersect operator returns rows that are common between two tables without returning duplicate records.
0
votes
0answers
15 views
Efficiently Intersecting Big Boolean Arrays
Suppose I have N Boolean arrays of size M. I simply want to intersect between pairs of these Boolean arrays efficiently (in optimized time). In my problem in hand, N is at least equal to 4500 and M is ...
1
vote
3answers
47 views
Boolean operations on mysql results
I have 3 Mysql tables:
[block_value]
id_block_value
file_id
[metadata]
id_metadata
metadata_name
[metadata_value]
meta_id
value
blockvalue_id
In these tables, there are pairs: ...
0
votes
1answer
17 views
Preventing two draggable circles from overlapping when they intersect
Ive looked everywhere i could for what i am guessing has a simple solution. But i am a new programmer and am having a bit of trouble. I have a few draggable image view circles in my view and i want to ...
0
votes
1answer
55 views
C# Direct X 9.0c - Mesh Intersect
I want to get a Collide Vector of a Mesh using a Up-Vector.
I have a position and a Up Vector.. with this booth i calculate the far vector
public Vector3 SetPlayerToGround(Matrix Object, Matrix ...
1
vote
1answer
44 views
SQL Server can you use EXCEPT or INTERSECT and ignore a column?
Here's my question,
CREATE TABLE
#table1(ID int, Fruit varchar(50), Veg varchar(50))
INSERT INTO #table1 (ID,Fruit,Veg)
VALUES (1,'Apple', 'Potato')
CREATE TABLE
#table2(ID int, Fruit ...
0
votes
1answer
43 views
Minimum number of common elements from a list of multiple vectors
I have a list containing several vectors, e.g.:
ls=list(c("g1","g3","g6"),c("g1","g4"),c("g2","g5"),c("g2","g5"),c("g2"))
I want to capture the minimum number of elements so that I have at least ...
-1
votes
0answers
36 views
How to stop entities/sprites from going through each other
In the game that I am making all the zombies is walkint through eaxh other so eventually if you don't shot any of them it will just look like one zombie when it accually is around 50. Is there any ...
0
votes
1answer
73 views
How to intersect and find different keys in Redis
I'm looking to get a list of redis keys as efficient as possible. We can model this on the redis server however we like so this is as much about the proper way to do it as it is solving the problem. ...
0
votes
0answers
53 views
nested collision starling as3
I am using starling and tweenMax frameworks in my project.
The trouble I am running into is this:
For the purpose of animating along different paths, I am using tweenmax.
There is one _leaderEnemy ...
-2
votes
4answers
32 views
mysql : intersection between 3 or more SELECT's results
ok, suppose we have 3 or more let's say "k" tables with the same structure:table 1:
id customer_id
1 35
2 36
3 37
table 2:
id customer_id
1 35
2 38
3 39
...
table k:
id customer_id
1 35
...
1
vote
0answers
23 views
Flash automatically finds curve intersection points. Can I use that code like I use curveTo in actionscript?
Or do I have to get down and dirty with the math and do the spline intersection math myself? I know the basic math for Quadratic b-splines.
I'm trying to make procedural randomly generated Celtic ...
0
votes
0answers
36 views
alternate for INTERSECT in MYSql
can anyone help me to wrote the alternate mysql query for this
(SELECT class_routine.class_timetable_id,exam_routine.exam_timetable_id
FROM course_section
JOIN class_routine ON ...
0
votes
1answer
32 views
How to get an interesect query using CritieraQuery?
Given
@Entity
public class Document {
@Id
@Column(name = "DOCUMENT_ID")
private Long id;
@ElementCollection
@CollectionTable(
name="TAG",
...
0
votes
1answer
96 views
XNA Rectangle Intersection issues
I am fairly new at XNA and I have come across a problem.
I have a button class which I am using for a button on the start screen of the game. I want to make it so that when the mouse clicks on the ...
3
votes
2answers
133 views
R intersect data.frame on multiple criteria
I am trying to populate a binary vector based on the intersection of two data.frames on multiple criteria.
I have the code working but I feel that it is memory excessive just to get the binary ...
0
votes
1answer
33 views
correct way to use set_intersection
struct Cord
{
int x_cord;
int y_cord;
Cord(int x = 0,int y = 0):x_cord(x),y_cord(y) {}
bool operator < (const Cord& cord) const
{
if ...
0
votes
1answer
45 views
Why is Rectangle intersect never true?
I have the following function, which shall tell me when 2 sprites overlap on the x-axis:
public int getSecondObjectX(int secObjWidth)
{
int rndX = ...
0
votes
3answers
59 views
Turtle line intersection, coordinates
I need to make a small program that draws three circles, a line between the first two, and then determines if the third touches or intersects the line. I have done everything but the last part. I am ...
-1
votes
1answer
73 views
Finding intersection of dataframe rownames
I have two dataframes. The row names in both are dates. What I want to do is, I want to select all the common rows (having same dates) in both the data frames and create a new data frame having only ...
0
votes
1answer
126 views
two collada object colliding
I am trying to use Ray intersect to find out if 2 collada object collide.
But so far no success :(
my code http://jsfiddle.net/XqQzF/
object.updateMatrix();
// ray
var ...
2
votes
1answer
262 views
VB.NET collision between pictureboxes
I'm trying to make a simple game and i need to know if picturebox1( my character) collides with other pictureboxes ( the walls).
I have already worked out how do this but it only works with my ...
-2
votes
2answers
59 views
.intersect giving java.lang.NullPointerException Java [closed]
I'm currently writing a game just for fun and I've came across an error when I was trying to make collision with the player and the aliens. As of right now I can return and retrieve the X co-ordinates ...
1
vote
0answers
47 views
REDIS: How to intersect set into list
Is is possible with Redis to intersect two normal sets & record the result into list.
I have multiple products with features.
I need to intersect the products by the features & show only ...
2
votes
1answer
132 views
PostGIS: ST_Intersects() between two geographies, sometimes returns false result
I have a problem with an intersect between two geographies in PostGIS:
I have a table1 with a geography-column, filled with multi-polygons in wgs84 (one per line).
A second table2 also has a ...
1
vote
3answers
136 views
What is the best way to intersect these two lists?
I have 2 lists in C#:
public class AvailableSlot
{
public DateTime DateTime;
public string Name
}
List<AvailableSlot> list1 = GetList();
List<AvailableSlot> list2 = ...
0
votes
3answers
120 views
How to determine which rectangle is intersecting more C# XNA
Basically I have a grid of rectangles, 75x75 each, side by side. I'm placing an object into these rectangles and when I place the object I need to figure out which rectangle it is intersecting with ...
0
votes
0answers
63 views
checking if lines intersect and if so retrun the coordinates
I've written some code below to check if two line segments intersect and if they do to tell me where. As input I have the (x,y) coordinates of both ends of each line. It appeared to be working ...
0
votes
1answer
33 views
subtract two “lists of dictionaties”
How should I subtract two list of dictionaries in a pythonic way?
I want to find the element that are unique in the first listOfDict.
See my example below:
firstDict = [{'A':1 ,'B':1}, {'A':2 ...
0
votes
0answers
91 views
How can I check collision between a triangle - circle and triangle rectangle? (including rotation)
I need to check if some shapes are colliding in a 2D world.
To check collision between circle and rectangle I found this:
Collision Detection with Rotated Rectangles
But now I need to add another ...
0
votes
1answer
34 views
how to know if the curve is intersect with the red line
this curve is consist of these points. i want to know if the red line intersect with the curve. the red line is consist of PointA and PointB. what can i do ?
0
votes
1answer
302 views
SQL Using to_char(null), to_number(null), etc in set operators with Oracle
I'm a student entering the world of SQL for the first time and I cannot find any clear and understandable documentation on how to use to_somedatatype(null) to substitute for missing columns in a ...
3
votes
3answers
116 views
mysql Alternatives to INTERSECT
I have been trying for the best part of the day to remove the intersect since it is not supported by mysql. If anyone can provide some pointers it would be really helpful.
SELECT *, ...
0
votes
1answer
327 views
three.js - principle of camera collision
As I understood the only method to compute collisions with three.js is intersectObjects with a ray ...
I created an object that includes the basic elements of the collision : ground, walls, ...
0
votes
0answers
83 views
array_intersect always evaluates to false
my code always goes into the "else-part", even if the "if-part" should be returned. When i delete the "else-part" it returns the "if-part".
foreach ($messageRepo as $oMessage) {
$messageTag = ...
0
votes
0answers
81 views
performing a database search in union or intersection
My code allows a person to enter keyword(s) in a provided space and clicking the search button, searches a database for those keywords and displays url(s) that have that keyword in it's row.
The code ...
1
vote
1answer
41 views
how to convert an sqllite statement from '=' to MATCH instead
I'm trying to create a dbase solution for email threading. When I receive an email.. I want to know if this email belongs to an existing thread.
So I match the subject ie subject = 'cool bro' ...
1
vote
1answer
159 views
Find length of geometry line after it intersects with geometry polygon using STIntersect
SQL SERVER 2012
I need to find the length of the geometry of a line after I use STIntersect to intersect lines against polygon geometry.
For instance, I have a line that is 7731 meters long but then ...
4
votes
1answer
385 views
UIBezierPath intersect
I've been searching for an answer for hours but have trouble finding anything on the topic.
I have a question related to Objective-c. I'm making an application in which a UIView checks for touches ...
2
votes
1answer
116 views
Haskell opposite of intersect (List)
I'm trying to get the "opposite" of intersect of two list:
like:
let all = [1..5]
let mask = [2,3]
let res = ???
-- let res = all `intersect` mask <-- reverse/opposite ?
-- I want to get [1,4,5] ...
0
votes
0answers
42 views
How to add div tag as looped particlas on sphere texture in three js
How to add div tag as looped particles with array value on sphere texture in canvasrenderer
just like http://mrdoob.github.com/three.js/examples/css3d_periodictable.html
but with latest versions ...
2
votes
2answers
81 views
trying to match a value in two arrays, if a matched value is present then output true
trying to match a value in two arrays, if a matched value is present then output true, thinking maybe the array_intersect function? very unsure! Any help is much appreciated!
Basically have two sql ...
1
vote
2answers
81 views
Getting records from two tables using Intersect
I want to get List of students from a particular section and with other search criteria. I am doing this:-
declare @sectionId int, @name varchar
select @sectionId=23
select @name='a'
select UserId, ...
0
votes
1answer
92 views
combining result of 5 sql queries by running a union and intersection
i have got 5 queries as given below , i need to perform a union on all
if($dv_state_ids!="")//check if no state is entered
$state_sql="SELECT pkg_id FROM package_state where state_id in ...
1
vote
1answer
124 views
intersection method in java, how do I order the boundaries of the intersection so I dont get duplicates
I am trying to solve this exercise Two Intervals Intersection, I think that I solved almost all the problem, but when I try the sample input I get 15 and 5, and I want to order that results, my idea ...
0
votes
1answer
91 views
How to calculate intersect of elements of a list in R
I have 10 lists named : Thre1, Thre2, Thre3, ..., Thre10.
My output should also be a list in a way that ith element of the output should be intersect of ith elements of my input lists so for example:
...
2
votes
0answers
177 views
Intersect between some DbGeography elements doesn´t work with Entity Framework 5 [closed]
What is wrong with that??
const string lonMin="-19";
const string latMin = "25";
const string lonMax = "-24";
const string latMax = "25.6";
//Create a polygon
var geoEncuadre = ...
3
votes
1answer
264 views
Matlab; intersection of the two data sets
I have two time series of share prices, Price1 and Price2. Tday is the time series of the dates which match for both prices. Now I am trying to match the prices of each to the newly established tday ...
1
vote
1answer
99 views
confusion in sdo_relate anyintersect of Oracle 11g spatial database
I run the following querys in oracle 11g :
1) select a1.apid from access_point a1 where sdo_relate(a1.shape,a1.shape,'mask=equal') = 'TRUE' and a1.apid = 'a5vhe';
2) select a1.apid from access_point ...
0
votes
2answers
175 views
Combine two lists of entities with a condition
Say I have a class defined as
class Object
{
public int ID { get;set; }
public string Property { get; set; }
public override bool Equals(object obj)
{
Object Item = obj as ...
2
votes
3answers
656 views
Ray intersection with 3D quads in XNA?
So I have successfully made a ray the represents the mouse unprojected into the world, and now I need to check if that ray can intersect with a quad object, here is the code I use to get the ray:
...



