Tagged Questions
The cartesian tag has no wiki summary.
19
votes
6answers
381 views
Algorithm for arranging Cartesian points
I have few Cartesian points of the form : (x,y)
where x and y both are non-negative integers.
For e.g.
(0,0) , (1,1), (0,1)
I need an algorithm to arrange the above points
in such a way that ...
9
votes
3answers
2k views
Converting longitude/latitude to X/Y coordinate
I created a map using Google Maps API that highlights all Minnesota counties. Basically, I created the county polygons using a set of longitudes/latitudes coordinates. Here's a screenshot of the ...
8
votes
6answers
172 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 ...
6
votes
2answers
161 views
Compute distance in Cartesian Coordinate System in Mathematica
Analyzing Eye-movements on a screen, I set my origin to the bottom left corner of it
(Hard to modify at that point).
Trying to compute distance between some points and the center of the screen I use ...
5
votes
4answers
297 views
Algorithm for RC car
I'm looking for an algorithm, and I have no idea where to start!
I'm trying to get from point A to point B in a cartesian graph. Movement is restricted to that of a RC car: backward, forward, ...
4
votes
2answers
55 views
How to do a rotation in R^2?
i'm stuck with a seemingly simple problem in mathematics: i need to rotate points in a 2-dimensional cartesian coordinate system, i.e. i have a point given by (x/y) and an angle gamma and i need to ...
4
votes
6answers
766 views
is NATURAL JOIN any better than SELECT FROM WHERE in terms of performance?
Today I got into a debate with my project manager about Cartesian products. He says a 'natural join' is somehow much better than using 'select from where' because the later cause the db engine to ...
3
votes
2answers
467 views
convert cartesian coordinate to picturebox coordinates c#
The question I have is more of mathematics! I have some pair of values that reperesent points of a curve that I want to draw on a picturebox using fromImage(Bitmap). My picture box is sized at ...
3
votes
2answers
153 views
Query does cartesian join unless
I've got a query that's supposed to return 2 rows. However, it returns 48 rows. It's acting like one of the tables that's being joined isn't there. But if I add a column from that table to the ...
3
votes
3answers
613 views
Most conventional method for storing XYZ data in MATLAB
I have a large amount of data to import in to MATLAB, representing location of points in cartesian space. Which of the following is the most conventional for storing and processing standard XYZ data?:
...
3
votes
5answers
244 views
Rating the straightness of a line
I have a data set that defines a set of points on a 2-dimensional Cartesian plane. Theoretically, those points should form a line, but that line may be perfectly horizontal, perfectly vertical, and ...
2
votes
2answers
127 views
Place N Point to Minimize Distance to a List of Points
Given a list of points on a 2D plane how could one place N points on the plane in such a way that that the total sum of all distances from the list of points to the closest placed point were as small ...
2
votes
2answers
226 views
Calculate area of a object in cartesian plane
I wonder if someone can help me to find the area of a 2-D object in Cartesian plane , when we know coordinates of every points.
Eg : I want to calculate the area of a triangular. A(12,34) B(45,89) ...
2
votes
1answer
293 views
Iphone Animation - Calculation to plot Cartesian Coordinates
I have two points (x1, y1) A & (x2, y2) B.
I want to animate an image from point A to point B but also have a touch event on that image. What is the best way to accomplish this?
I am currently ...
2
votes
5answers
504 views
Quickly generate the cartesian product of a matrix
Let's say I have a matrix x which contains 10 rows and 2 columns. I want to generate a new matrix M that contains each unique pair of rows from x - that is, a new matrix with 55 rows and 4 columns.
...
1
vote
3answers
53 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
59 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
59 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
vote
1answer
387 views
Cartesian to log polar coordinate conversion
Hi I am trying to develop a java code that performs feature extraction in an image.
I extracted the keypoints from the image.
The next step is to divide the region around each keypoint into non ...
1
vote
1answer
445 views
Convert Polar Image to a Cartesian Image
I am attempting to convert an image in polar coordinates (axes are angle x radius) to an image in cartesian coordinates (axes are x and y).
This is simple enough in matlab using pcolor() but the ...
1
vote
1answer
162 views
Calculate point on a line if the slope is known
Trying to compute the left and top of a page element.
The element needs to be positioned on an imaginary line that runs from 0,0 of the page window to a point (roughly) equal to 425 pixels from the ...
1
vote
3answers
502 views
flip svg coordinate system
Is there a way to flip the SVG coordinate system so that [0,0] is in the lower left instead of the upper left?
1
vote
2answers
284 views
iPhone coordinate system slope-intercept of two points
I have 2 points in a UIView, but I am unable to get the correct line equation between these two points because UIView coordinate system is not cartesian. When I apply the cartesian slope of a line, I ...
1
vote
1answer
359 views
Doubts in converting spherical coordinates
I'm trying to convert spherical coordinates (namely latitude and longitude from a GPS device) into Cartesian coordinates. I'm following this simple conversion derived from the polar coordinates ...
1
vote
1answer
200 views
IDL: Can I get the coordinates of a point on my plot's cartesian plane?
I have a plot like this:
http://i.imgur.com/i9xp5.png
I need the data coordinates of points in order to plot wind barbs.
Now, if I wanted a wind barb to be drawn at x=100, y=20, is there a way I can ...
1
vote
1answer
183 views
how do I convert from one cartesian system to another
2D problem: I measure the position of the 3 ends of a triangle in a cartesian system. Now i move the system (triangle) to another cartesian system and measure the position of just two ends.
How can I ...
1
vote
1answer
96 views
Polar and Cartesian calculations not completely working?
double testx, testy, testdeg, testrad, endx, endy;
testx = 1;
testy = 1;
testdeg = atan2( testx, testy) / Math::PI* 180;
testrad = sqrt(pow(testx,2) + pow(testy,2));
endx = testrad * cos(testdeg);
...
1
vote
1answer
451 views
How-to map process to an Hypercube using MPI_CART
I am trying to implement bitonic sorting using MPI for 2^n processors.
I would like to use an n-dimensional hypercube to do so for convenience. Using MPI_Cart_Create I can create self-organising ...
1
vote
2answers
463 views
Transform a java object tree into a 2 dimension table
I'm faced to the following problem. I have a tree of java objects for which I have to export each field value into a CSV file. The result of the exportation must be similar to what we have in SQL left ...
0
votes
0answers
25 views
Cartesian Product in mathematics [migrated]
When using the cartesian product, and you have three collections, do you take two collections at a time OR all three together to calculate the product?
My question is if you have more than two ...
0
votes
1answer
28 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
38 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
35 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 ...
0
votes
1answer
52 views
NHIbernate 1.2 And Lazy Loading
Got a bit of an unusual problem - i'm sure i'm missing something really simple now!
Have two tables in particular:
<class name="Proposal" table="Proposal">
<id name="Id" ...
0
votes
1answer
84 views
Coordinates of pointer which perpendicular to another line without calculating angle [closed]
How to get coordinates of pointer which is perpendicular to another line without calculating angle.
I am doing image processing using vc++ with Opencv. We are tracking the wrist and the middle ...
0
votes
0answers
102 views
Determine x y z position from two stereo images when Z is known
I am trying to determine the X,Y,Z position of an object using stereo cameras. I determined the Z depth using triangulation, but how to get the X,Y position from two images. How to combine the images ...
0
votes
1answer
273 views
Maple: How to convert Cylindrical coordinates to Cartesian coordinates?
We get some expression in Cylindrical coordinates (r, ϕ, z ) like : expr := r*z^2*sin((1/3)*ϕ) we need to convert it into Cartesian coordinates and than back to Cylindrical coordinates. ...
0
votes
0answers
46 views
Record cartesian coordinates based on what is drawn with the mouse
I'm looking for a program that is able to record the cartesian coordinates generated from a pattern drawn by the mouse
An example would be if I traced a regular y=x^2 parabola from -2 - 2; the ...
0
votes
2answers
212 views
Create interactive cartesian grid in django
I have a question regarding a platform I'm developing called e-cidadania (GPL). One of the applications will be something like a blackboard where you can put messages. I've been requested to do it ...
0
votes
1answer
280 views
Suitable widget for drawing a 2D cartesian coordinate system in java
I want to build up a GUI area where users can click randomly. Then I want to retrieve the cartesian (x,y) coordinates of those points where the user clicked. Which GUI component is suitable for my ...
0
votes
1answer
283 views
Is there any Java Framework to manipulate/draw a Cartesian plane?
I would like to know if there is any Java Framework or resource to draw and/or manipulate a Cartesian Plane. Obviously, it can be done using just Java 2d, but implement some resources like "zoom in" ...
0
votes
1answer
454 views
javascript: lat/lon, lat1/lon1, bearing, distance to x,y screen coordinates?
how to project a lat/lon hotspot onto an 360x180 degree panorama image?
Using javascript?
Real data:
lat/lon in decimal degrees and altitude in meters:
Camera coordinates: 49.994249, 8.66539, 2
...
0
votes
2answers
1k views
How to generate Cartesian Coordinate (x,y) from GridBaglayout?
My question related to previous post
http://stackoverflow.com/questions/2374295/how-to-fill-color-in-grid-boxes-randomly
How can I get Cartesian Coordinate (x,y) of each of the boxes filled by color ...
-2
votes
2answers
117 views
find a point which perpendicular to given line [closed]
I want to find a point z(x3,y3) which perpendicular to given line. In my example I am given 2 coordinates A(x1 , y1) and B(x2 , y2). I want to find the point z which is perpendicular(AZ) to AB line ...