Tagged Questions
The trig tag has no wiki summary.
4
votes
3answers
5k views
Rotate normal vector onto axis plane
I have a set of data points in 3D space which apparently all fall onto a specific plane. I use PCA to compute the plane parameters. The 3rd component of PCA gives me the normal vector of the plane ...
3
votes
2answers
440 views
sine wave glissando from one pitch to another in Numpy
I have been working on a program where I need to slowly and smoothly change the pitch of a sine wave from one pitch to another. I am able to get an array of the frequency the pitch should be at any ...
2
votes
5answers
241 views
Vectorized Trig functions in C?
I'm looking to calculate highly parallelized trig functions (in block of like 1024), and I'd like to take advantage of at least some of the parallelism that modern architectures have.
When I compile ...
2
votes
5answers
2k views
How can I find the arctan of a right triangle using only the hypotenuse?
Okay, so I need to make C go the shortest path from A to B. A to B is the hypotenuse of my right triangle, and I need to give C the arctan of said triangle. How do I do this, and does the formula have ...
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);
...
0
votes
2answers
107 views
Modifying The Angle of a Unit Vector
I have an angle in the form of a unit vector. I need to be able to change this angle. Say the angle of the vector V = (x,y) is currently A. How would I go about changing the angle to A+0.2 (that is ...
0
votes
2answers
137 views
Why doesn't math.h define the reciprocal trig functions?
I find little things like this throughout the C programming language; something that is very easy to provide, has very little chance of breaking old code, and has an obvious way to standardize it. Is ...
0
votes
1answer
136 views
How do I implement multiple sources of gravity, specifically the trig required. (C#) VS 2010
I am designing a small game wherein objects are attracted by multiple objects at once. What I am doing is plotting the course that the shots of these objects will take.
To calculate the pull of the ...
0
votes
1answer
314 views
AS3 (or any language) trig library for triangles?
Does anyone know of a library for easily dropping in parameters of angles and lengths of sides, and letting it automagically extrapolate the non-given angles and lengths using trig? Even if it had ...