The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
17 views

CatmullRomspline not giving any output

I tried using the following code in cesium sandcastle to create a spline from Philadelphia to Los Angeles. //catmulrom spline. var controlPoints = [ {point: new ...
0
votes
2answers
42 views

3x3 Matrix Rotation in C++

Alright, first off, I know similar questions are all over the web, I have looked at more than I'd care to count, I've been trying to figure it out for almost 3 weeks now (not constantly, just on and ...
0
votes
0answers
10 views

Calculating quaternion for transformation between 2 3D cartesian coordinate systems

I have two cartesian coordinate systems with known unit vectors: System A(x_A,y_A,z_A) and System B(x_B,y_B,z_B) Both systems share the same origin (0,0,0). I'm trying to calculate a quaternion, ...
1
vote
0answers
39 views

RMSE of (x,y) coordinates

I have a data set of coordinates (X,Y) values in the Cartesian plane and I would like to find the RMSE of these points to 1 coordinate (x1,y1). So basically, (X,Y) are around (x1,y1) and I would like ...
0
votes
1answer
58 views

Generate Cartesian Product using CUDA on GPU

I would like to know a method to generate Cartesian product using CUDA on GPU. Simple case: We have two lists: A = {0.0, 0.1, 0.2} B = {0.0, 0.1, 0.2} A x B = C = { {0.0, 0.0}, {0.0, 0.1}, ...
0
votes
0answers
29 views

using datagrid without database and displaying cartesian coordinate in C#

I want to make an application that use the DataGrid to display user inputted data, and displays this data in Cartesian coordinates. I want to use C# but i am just a beginner. I have designed the form: ...
0
votes
1answer
129 views

Convert image in polar to cartesian coordinates

I am trying to convert an image in polar to cartesian coordinates. examples to convert image to polar coordinates do it explicitly - want a slick matrix method I thought using the method used above ...
-1
votes
1answer
17 views

Create larger plane of cartesian points from a smaller plane with few representative points

I have a plane of cartesian points made up of a few points. I would like to use this small number of points to create a larger plane of points similar geometrically to the smaller plane. Is there an ...
0
votes
1answer
83 views

Drawing a Cartesian plane in wxPython

I am looking to include a Cartesian plane in my python apps GUI. Im am building the GUI using wxPython. I am wondering as to the best approach to take? The plane should be populated with images at ...
0
votes
1answer
59 views

Perpendicular Distance from a Point to a line represented by two points [duplicate]

I have a point C(Cx,Cy) and then a line represented by two points A(Ax,Ay) and B(Bx,By). I need to find the perpendicular distance between the point C and the line represented by AB. How do I do this ...
1
vote
1answer
90 views

Finding Points in a Rectangle or Circle with mysql

I have a mysql database table with a list points with their Co-ordinates (x,y) I want to find the list of points which fall inside the rectangle. This would have been simple had any one side of the ...
0
votes
1answer
88 views

Convert Cartesian point to point on rotated plane (pic)

I have a cartesian point that I am being given (blue line), and I need to convert it to a point relative to a rotated plane (green box). The plane is rotated at 28.227º as shown below. Sadly, my lack ...
3
votes
1answer
113 views

Pathfinding with teleporters

I'm working on a project with a virtual robot (Turtles in the ComputerCraft mod for Minecraft), where the robot would be in a maze of tunnels and have to navigate around in them. The world is ...
1
vote
0answers
110 views

Convert Latitude / Longitude to Cartesian on Winkel Tripel projection

I have a Winkel Tripel map that I need to place markers over. Im given the position of the markers in Latitude/ Longitude. So I need a way to convert it to X,Y. I found some code (below), but when I ...
1
vote
1answer
52 views

Does it cause a Cartesian join if you include a table nothing is selected from?

Would this be a Cartesian join: select dog_t.type dog_t.breed date_t.date from dog_t, cat_t, date_t where dog_t.date_key=date_t.date_key Would including the cat_t table cause a Cartesian join... ...
1
vote
1answer
75 views

Python: shortest way to compute cartesian power of list [duplicate]

Suppose we have a list L. The cartesian product L x L could be computed like this: product = [(a,b) for a in L for b in L] How can the cartesian power L x L x L x ... x L (n times, for a given n) ...
1
vote
3answers
106 views

How to avoid cartesian product on querying?

I'm building a web app of classified ads (it's my first professional PHP app). I have a table with the Ads and other with the images for each Ad. Each ad can have up to 4 images. It all worked fine ...
0
votes
0answers
13 views

Cartesian products for 8 sets of data, is that possible?

is there a way to do this in excel or if not, any alternative to get all possible combinations. I have 8 columns, with different number of data in each set.
0
votes
0answers
131 views

guava google code cartesian

Is there anyway to do a Cartesian product on 15 integer sets of size 5 ? It seems like the library is throwing an exception error: cartesian product too big !
3
votes
3answers
459 views

Shortest Path distance between points given as X-Y coordinates

I am currently working on a project that has a vector containing X and Y coordinates for approximately 800 points. These points represent an electric network of lines. My goal is to compute the ...
5
votes
2answers
429 views

Algorithm [preferably fortran] to interpolate data from a 2D unstructured grid to form a cartesian grid

I am modeling fracture propagation using a 2D dynamic unstructured grid. As the fracture propagate over time, the elements move accordingly. For a given time step, I would like to interpolate the data ...
0
votes
1answer
89 views

Selecting Columns from 3 Inner Joins - still getting cartesian product. S

I have 3 tables. They are inner joined. When I choose to select from all three tables I get a cartesian product. I've used distinct and I've tried cross apply with top 1. Top 1 brings back the right ...
2
votes
1answer
330 views

Cartesian XY bearing between points .Net

I am looking for a way to calculate the bearing or azimuth (0-360°) of one drawing point, or pixel, or screen coord, to another. I currently have the distance portion of it, and with maths not being ...
0
votes
2answers
92 views

More efficient way of finding every possible combination

this is a bit tough for me to explain, I'm trying to get every possible combination of numbers while only using the numbers all together once, for example, if I have the numbers 1 through 10 and want ...
0
votes
0answers
106 views

Join unrelated tables by prompting for related value

I have two unrelated tables, Activity and Schedules, in an oracle database using Business Objects to query. I can pair up any activity with any schedule but I want it to be prompted in the query. ...
0
votes
3answers
158 views

Ambiguity between i, j indices and x, y coordinates when dealing with 2D arrays

Background: I am having a discussion with a friend regarding the correct way to refer to elements within a 2D array for something I'm designing. I was unhappy with using XNA's Point and Vector2 ...
0
votes
0answers
217 views

Creating particles to follow circular paths in HTML5 canvas

Ok, so I am learning HTML5 and I wanted to update my portfolio to have a moving black hole instead of a static picture of one. I could have just taken the picture and rotated it in the canvas, but I ...
0
votes
1answer
109 views

How to find whether a certain index lies on diagonal or anti diagonal of a matrix?

So I am currently working on a project that involves a parallel grid structure. The problem I am having is related to the communication scheme. The amount of information I have for each element in ...
3
votes
1answer
285 views

Retrieving the actual 3D coordinates of a point on a triangle that has been flattened to 2 dimensions

This is a bit of a complicated problem, so I'll do my best to break it down into chunks. I'm writing a 3D Python library for the sake of learning / fun (as opposed to one that I'd intend for others ...
0
votes
0answers
34 views

Minimal set of n-tuples covering a given set of n-tuples

Input: a set of M ordered tuples of n elements, where each element is a set, i.e.: (A1, A2, ..., An), where each Ai is a set Problem: combine these n-tuples together to create the minimal set of ...
1
vote
1answer
744 views

Cartesian to Polar (3d coordinates)

How do you convert between Cartesian and Polar (and back) coordinate systems in 3D space? Preferably with a c# example but anything would really be appreciated. Thanks! Edit When 20% of the change is ...
0
votes
3answers
1k views

VB.NET Cartesian Coordinate System

I'd like to make a Cartesian Coordinate System in a Windows form and be able to plot (x,y) coordinates in it. How do i do this? I already did my research but unfortunately i only land on "charts" and ...
-1
votes
3answers
382 views

Calculating cartesian coordinates using python

Having not worked with cartesian graphs since high school, I have actually found a need for them relevant to real life. It may be a strange need, but I have to allocate data to points on a cartesian ...
1
vote
2answers
135 views

Better method of finding every possible combination of the partitioned sets

I need to find every possible combination of N sets of X length with no duplicates and in a particular order, e.g. input: [["A"], ["B"], ["C"]] output: ...
1
vote
2answers
965 views

Trying to convert longitude/latitude to Cartesian coordinates

i am trying to convert a city's longitude/latitude position to Cartesian so i can then convert it to pixel position to display on a pygame screen, but i am having trouble figuring it out. def ...
0
votes
2answers
144 views

How to find the coordinate of final point in a parabolic motion through 3 points where 2 points are known?

Suppose an object travels in a parabola in 2D coordinate system from P to Q and then Q to R where the 2D coordinates of P and Q are known and we do not know the parabola through these 3 points. The ...
1
vote
0answers
224 views

Are my equations correct? Rotate on sphere from lat/long points A to B, where will point C be?

I’ve written the below python script. The idea is to calculate the new location of point C after you rotate the globe from point A to point B. I first calculate point P, which is the rotation pole. ...
0
votes
3answers
612 views

Alternative to using squareform (Matlab)

At the moment i am using the pdist function in Matlab, to calculate the euclidian distances between various points in a three dimensional cartesian system. I'm doing this because i want to know which ...
2
votes
1answer
186 views

Rotating a Rectangle around a Grid To Calculate Players View

I have a player who can rotate and move around a 2D Cartesian grid, I need to calculate where to draw the enemies on screen. The player should have a certain viewpoint which is the size of the ...
0
votes
1answer
392 views

How to use MPI Cartesian Topology Correctly

To start off, I needed to calculate a number of sums and then find the minimum of those sums, this was done as so, using mpi: MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, ...
0
votes
1answer
122 views

Why does my JavaScript function accept three arrays, but not an array containing three arrays?

function product() { return Array.prototype.reduce.call(arguments, function(as, bs) { return [a.concat(b) for each (a in as) for each (b in bs)] }, [[]]); } ...
0
votes
1answer
209 views

Cartesian product of dynamic array using linq c# throw outofmemory exception

I have followed this http://blogs.msdn.com/b/ericlippert/archive/2010/06/28/computing-a-cartesian-product-with-linq.aspx and created a dynamic linq query to compute cartesian product. I have 10 ...
3
votes
3answers
204 views

Cartesian on NULL arrays

I need a cartesian product of 6 arrays - the catch is that at any time upto 5 arrays could be null. It works great when all arrays are populated but bombs when any of the arrays are null my arrays ...
0
votes
1answer
134 views

how to scale gps coordinate by given direction and length

I'd like to scale GPS coordinate by given direction and length. E.g. I have two points A,B. I know their GPS position (also in cartesian format) and I'd like to change the length of line AB by 1.5 ...
0
votes
2answers
1k views

Cartesian to polar coordinates

Take a look at the example here: http://www.brianhare.com/physics/so.html Take a look at console.log where I am using these two main functions: function distanceBetween2pts(x1, y1, x2, y2) { ...
0
votes
4answers
69 views

MySQL View Problems

I have the following tables, users which is self explanatory and answers which contains a list of responses on a given date for a specific user. users ----- ID FIRST_NAME LAST_NAME 1 Joe ...
8
votes
6answers
421 views

Algorithm for placing a grid over a disordered set of points

Given a large set (tens of thousands up to millions) of disordered points represented as 3D Cartesian vectors, what's a good algorithm for making a regular square grid (of user-defined spacing) that ...
1
vote
3answers
160 views

Idenfitying all points at which gridlines are crossed by a straight line in a 3d cartesian graph

OK, I'm using PHP and have generated a 3d cartesian coordinate system (x,y,z). I want to travel a straight line between two points. I call each 1x1x1 square a sector identified by the adjacent ...
1
vote
1answer
125 views

How can I see the cartesian plane on the interface builder?

Is there a way to see the cartesian plane on the Interface Builder? I don't know how to figure out the exact coordinates to draw, for example a NSImage, can you guys teach me how to locate myself on ...
1
vote
2answers
199 views

Math for counting the difference of concentric rectangles

I have 2 rectangles, one which is basically the other scaled up, like so I'd like to see if a set of xy coords falls within the XOR difference, ie What's the best math to do this? Difference ...

1 2