The cosine tag has no wiki summary.
0
votes
2answers
72 views
C++ returns NaN after a sum
I'm running the following code:
double Scos [61][61][61] = {0};
double kdotr;
int ik;
int howmany [34] = {0};
auto Fs_ = initializer_list<int>({0});
copy(Fs_.begin(), ...
1
vote
2answers
62 views
Alternative bignum library to GMP library that supports cosine function [closed]
Does anyone have a recommendation I am working on Mac OSX and trying to write and run C++ code.
I am running the code to answer the mathematical question known as the "Tammes Problem". I have a ...
0
votes
1answer
42 views
How to compute cosine similarity on multi-type data?
I have records (rows) in a database and I want to identify similar records. I have a constraint to use cosine similarity. If the variables (attributes, columns) vary in type and come in this form:
...
0
votes
0answers
134 views
Sin and Cosine chart plotter…some algorithm errors C++
So i've created this chart plotting program here. However I am having a few glitches with it. First I should describe how this program is to work. Basically using stdscr and creating a new win I have ...
1
vote
2answers
84 views
Blank window in java
I am writing a java program that can graph a function on a created window. Everything was working until I started messing with cosine/sine. My program compiles but for some reason I get a blank window ...
-1
votes
4answers
245 views
Java sine and cosine
Hello I am trying to create a java program that allows you to graph an equation and its been working well so far until I wanted it to graph cosine and sine functions. I am confused on how I can do ...
0
votes
1answer
145 views
Compute cosine similarities between documents in semantic space, using R-lsa package
I'm trying to cluster similar documents using the R language.
As a first step, I compute the term-document matrix for my set of documents.
Then I create the latent semantic space for the ...
0
votes
0answers
42 views
Computing turning angles from coordinate data [closed]
So I have three nx4 arrays where n is one of 1500,2000 and 6000.
the 1st is the "tag number" which identifies the rat in question.
The 2nd and 3rd columns are the x & y displacement values for ...
0
votes
2answers
123 views
Python cosine function precision
From mathematics we know that the cosine of a 90 degree angle is 0 but Python says it's a bit more than that.
import math
math.cos(math.radians(90))
6.123233995736766e-17
What's the matter between ...
0
votes
0answers
77 views
Apache Mahout Pearson Correlation is the same as Cosine measure when input is centered?
I am learning "Mahout in action",the book says :
"Pearson Correlation and Cosine measure actually reduce to the same
computation when the two series of input each have a mean of 0
(centered). ...
3
votes
1answer
103 views
What is this Cosine 16 bit function actually doing?
I'd like to think I'm fairly decent at reviewing other peoples code...but I am at a loss. This comes from the Doom3 Math library. I believe this has probably existed in GPL since Quake 1. Note that ...
-4
votes
1answer
399 views
Solve Triangle using Cosine in Python [closed]
Hi I'm new here and I dont really understand python or code in general but I'm trying and I been trying for 2-3 hours and I'm trying to
"Consider a triangle with sides of length 3, 7, and 9. The law ...
0
votes
0answers
29 views
FSINCOS on a GPU
I need to obtain both sines and cosines of a sequence of arguments as fast as possibile.
I read carefully the discussion What is the fastest way to compute sin and cos together? where I noticed that
...
0
votes
1answer
43 views
Compute cosines and sines of a sequence of angles
I should create a program which computes the cosines and sines of a sequence of angles k*α, where k is a growing natural number (i.e., 0, 1, 2,...) and α is a constant angle which lies between 0 and ...
0
votes
1answer
305 views
Scipy, tf-idf and cosine similarity
I'm trying to cluster some documents according to a tf-idf matrix using python.
First I follow the wikipedia definition of the formula, using normalised tf. http://en.wikipedia.org/wiki/Tf-idf
...
4
votes
2answers
146 views
Haskell implementation of the law of cosines
I am trying to implement the law of cosines function, and here is my code:
cosC :: [a] -> a
cosC sides
| length sides < 3 = 0
| otherwise = (x ^ 2 + y ^ 2 - z ^ ...
2
votes
2answers
166 views
aJavascript scientific calculator input error
Working on a calculator with basic sin and cosine functions.
Code in jsfiddle: http://jsfiddle.net/C9VcE/
Getting an error where I can only enter one character for the input.
Also currently sin ...
3
votes
5answers
177 views
Math.cos not working
This bit of my program is supposed to calculate bottomAngle using cosine rule.
public double bottomAngle() {
topAngleinRadians = Math.toRadians(topAngle) ;
return ...
0
votes
2answers
360 views
Unsigned long long arithmetic into double
I'm making a function that takes in 3 unsigned long longs, and applies the law of cosines to find out if the triangle is obtuse, acute or a right triangle. Should I just cast the variables to doubles ...
1
vote
1answer
81 views
How do I calculate the height of the bottom edge when rotating a plane on the x-axis in 3d space?
In my iOS app, I have a view that I'm translating on the X axis in 3D space. The anchor point for the view is in the top center. If I rotate the view M_PI degrees, it will appear to go flat. I need X ...
0
votes
1answer
42 views
Weird sign issue when computing sine or cosine
I'm trying to write a small program that calculates the sine and cosine of an angle that the user provides in degrees, with 6 decimal places of precision.
It goes like this:
Input (angle)
90
...
0
votes
1answer
2k views
Finding 3D coordinates from point with known XYZ angles, radius and origin?
I've read somewhat over 300 pages on the internet, and I didn't get the result I wanted or either it didn't work, so I hope people can help me out over here. You can explain by using pseudo code and ...
2
votes
4answers
256 views
Python numpy: Convert string in to numpy array
I have following String that I have put together:
v1fColor = ...
1
vote
0answers
118 views
Javascript Clusterfck Metric
So I am converting an old data visualization to a new platform and I am a little bit stuck on their community sorting feature. In the original code, it looks like the author uses agglomerative ...
0
votes
1answer
114 views
Matlab: Optimizing speed of function call and cosine sign-finding in a loop
The code in question is here:
function k = whileloop(odefun,args)
...
while (sign(costheta) == originalsign)
y=y(:) + odefun(0,y(:),vars,param)*(dt); % Line 4
costheta = ...
0
votes
2answers
590 views
update center in k-means use cosine similarity
I have a problem with updating centers in k-means.
my data are like bellow:
1 0 5 6 2 3 5 7
2 5 0 8 6 1 0 5 . . .
2 5 6 4 2 1 0 8
.
.
i need to process rows by ...
0
votes
1answer
539 views
java - how to implement Cosine Similarity with tf*idf score of the document?
I have a set of documents in which I am searching for my keyword. I have calculated the tf-idf values for the keyword and all the documents. Suppose, I am storing my tf-idf value in an array for all ...
0
votes
2answers
129 views
Rotating an image around another?
I am currently developing a game for iphone in which there is a spinning asteroid(which is circular) and an object spinning around the circumference of that asteroid. I have made calculations for the ...
2
votes
4answers
729 views
How to get coordinates of a point in a coordinate system based on angle and distance
How to get coordinates of a point in a coordinate system when all I have is the origin coordinates (x, y) and the angle from the origin to the point and the distance from the origin to the point?
3
votes
5answers
567 views
Solving a triangle using the Law of Cosines
I'm looking to solve a triangle of which I know the lengths of the 3 sides (a SSS triangle). Therefore, I want to determine if the 3 "inner" angles of a shape consisting of 3 lines = 180. If it does, ...
-1
votes
1answer
303 views
OpenGL - sine and cosine waves in jogl (JAVA)
I'm trying to code a sine and a cosine wave to be displayed on my panel. I am trying this in my EventListener class by creating a method drawCurves().
CurvesGLEventListener:
package firstAttempt;
...
-1
votes
1answer
307 views
Why doesn't Xcode recognized Cosine?
(posted imports)
#include <GLUT/glut.h> //must be included for OpenGL
#include <Opengl/gl.h> //must be included for OpenGL
#include <math.h>
#include ...
6
votes
3answers
1k views
Why does Math.cos(90 * Math.PI/180) yield 6.123031769111… and not zero?
I convert degrees to radians (degrees * Math.PI/180) but why does the following:
Math.cos(90 * Math.PI/180)
yield 6.123031769111... and not zero?
I'm trying to perform 2D rotations uses matrixes ...
1
vote
2answers
105 views
Inaccuracies with Sperical Law of Cosines…specifically along latitude? - PHP
I have a strange problem using the Cosine formula in my PHP application..
function CalculateDistanceCosine($decA, $decB)
{
$lon1 = $decA[0]; //This would be equal to point A's longitude, and so ...
3
votes
2answers
250 views
Why isn't this circle rotating around the correct center?
Jsfiddle: http://jsfiddle.net/yJJs7/
Javascript:
function main(){
var centerx=250;
var centery=250;
var degrees=0;
var div=document.getElementById('test');
var move=function(){ ...
0
votes
1answer
257 views
how to speed up this code? calculus iterating through rows and cols of a matrix
I have a piece of code which performs calculations on a matrix by iterating through its rows and columns. The piece of calculus performed is a cosine distance measure, with a code I found on Internet ...
4
votes
3answers
295 views
Cosine in floating point
I am trying to implement the cosine and sine functions in floating point (but I have no floating point hardware).
Since my processor has no floating-point hardware, nor instructions, I have already ...
-1
votes
2answers
234 views
Transition Probability Matrix calculation for sentences
I have sentences stored as strings extracted from a document. I want to apply standard cosine similarity to sentences. How do i go about doing it?
1
vote
1answer
545 views
Cosine Interpolation with Integers
Ok so I've been looking into interpolation lately. Sadly almost every article I've read only discusses interpolation at a decimal level 0.0 to 1.0 to be exact. I would like to interpolate whole number ...
1
vote
2answers
193 views
Image cosine wave
I need help with this problem that I am having. What I am trying to do is make an image move in a cosine wave pattern in C# Windows Forms, but whatever I try never works. This is what I have so far in ...
-2
votes
1answer
509 views
Calculating cosine algorithm
I created this function CalculateCos:
int Factorial (long int n)
{
long int r = 1;
for (int i = 2; i<=n; i++)
{
r = r*i;
}
return r;
}
float ...
0
votes
1answer
677 views
Trying to implement The inverse of a dct 8*8 matrix
I have managed to calculate the dct of an 8*8 matrix and I am having trouble doing the inverse. Can anyone have a look at this code and tell me what I am doing now. I should be getting the exact same ...
1
vote
1answer
290 views
vDSP and Discrete Cosine Transform
I am new to FFT, DCT and the like. Recently I was looking into the documentation for the vDSP library from Apple and was unable to find a DCT implementation. I was wondering if anyone knows of a way ...
1
vote
2answers
336 views
Android fade out animation using Cosine function
I in my Android Honeycomb application there is a View which has a fade in and fade out animation. Here's most part of the animation code:
<scale
android:fromXScale="1.0"
...
2
votes
0answers
763 views
Direction Cosine Matrix implementation
I'm trying to implement the Direction Cosine Matrix on Android. I've read some theory about DCM and I finally coded a draft
public void imuUpdate(float dT, float gyro[], float accel[]) {
int ...
2
votes
3answers
995 views
Cosine Similarity Code (non-term vectors)
I am trying to find the cosine similarity between 2 vectors (x,y Points) and I am making some silly error that I cannot nail down. Pardone me am a newbie and sorry if I am making a very simple error ...
4
votes
2answers
282 views
How to calculate “OnTopicness” of documents using Lucene.NET
Imagine I have a huge database of threads and posts (about 10.000.000 records) from different forum sites including several subforums that serve as my lucene documents.
Now I am trying to calculate a ...
1
vote
1answer
742 views
Cosine similarity between a query and document in Lucene
I wanted to get cosine similarity between a long query and a document in a collection. I'm using Lucence to index the collection and submitting the queries to retrieve documents.
However, I'm getting ...
4
votes
2answers
1k views
Absolute angle between lines using inverse cosine
I want to calculate the angle between two lines formed by three points(one of the points is the point of intersection of the two lines) using inverse cosine function as follows:
CGFloat a = ...
1
vote
4answers
1k views
Algorithm for creating a circular path around a center mass?
I am attempting to simply make objects orbit around a center point, e.g.
The green and blue objects represent objects which should keep their distance to the center point, while rotating, based on ...

