Tagged Questions
The cosine tag has no wiki summary.
9
votes
14answers
1k views
How can I work around the fact that in C++, sin(M_PI) is not 0?
In C++,
const double Pi = 3.14159265;
cout << sin(Pi); // displays: 3.58979e-009
it SHOULD display the number zero
I understand this is because Pi is being ...
4
votes
2answers
116 views
How can i make the php cos function return the correct value?
I've tried
$x = cos(deg2rad($angle));
but it returns 6.12323399574E-17 when the angle is 90 degrees instead of 0.
I read that this is a floating point problem, but is there a workaround?
4
votes
3answers
736 views
how to solve cos 90 problem in java?
I have some problems with calculating cosinus 90 in Java using Math.cos function :
public class calc{
private double x;
private double y;
public calc(double x,double y){
...
4
votes
4answers
1k views
Java Math.cos() Method Does Not Return 0 When Expected
Using Java on a Windows 7 PC (not sure if that matters) and calling Math.cos() on values that should return 0 (like pi/2) instead returns small values, but small values that, unless I'm ...
4
votes
4answers
9k views
How do I calculate the cosine similarity of two vectors?
How do I find the cosine similarity between vectors?
I need to find the similarity to measure the relatedness between two lines of text.
For example, I have two sentences like:
system for user ...
3
votes
2answers
140 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 ...
3
votes
2answers
182 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 = ...
3
votes
1answer
201 views
How do I break a non-straight line into even segments?
I have a non-straight line defined by a series of x, y coordinate points. I could draw a straight line on-screen directly between these points with no problem. Unfortunately, I have to draw the line ...
3
votes
1answer
513 views
Interpolate x, y, z coordinates on a sphere using points from two spin vectors?
I want to plot 3D points in real time that lie upon the surface of a unit sphere (r = 1).
There are two spin vectors at work here. One vector rotates around the Y axis, it's X and Z values are ...
3
votes
1answer
204 views
cos result incorrect
I import "math.h".
I can use the cos function,
but when I execute cos(0.321139585333178)
the result is 0.948876
If I use the calculator in Mac or use a normal calculator, the result is ...
2
votes
0answers
194 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
160 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 ...
2
votes
1answer
279 views
How to calculate sine, cosine in Less?
Trying to convert the following php method to use in a .less stylesheet:
<?php
$deg2radians = pi() * 2 / 360;
$rad = $degree * $deg2radians;
$costheta = cos($rad);
$sintheta = ...
2
votes
1answer
405 views
Mysql Recursive Query / Spherical Law of Cosines
I want to search nearest locations from coordinates (lat/lng) into mysql database, I use spherical law of cosines to searching these places :
SELECT onlycoord.id, locations.name, locations.ascii,
...
2
votes
1answer
234 views
Assistance with Lua Cosine, wrong results returned
Ok, first up, this is NOT for a class, test, or other student type activity.
I'm a scripter for a game, and am trying to implement the math library for all to use, and unfortunately, all I have ...
2
votes
5answers
2k views
Using the Cosine law to calculate distance between 2 points in Objective C?
I get some GPS coordinates from Google Maps and I need to find the distance between them
using Objective C. I have implemented the formula but I get results that are way to big.
I have tested the ...
2
votes
1answer
2k views
get cosine similarity between two documents in lucene
i have built an index in Lucene. I want without specifying a query, just to get a score (cosine similarity or another distance?) between two documents in the index.
For example i am getting from ...
1
vote
2answers
55 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 ...
1
vote
0answers
68 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
1answer
223 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 ...
1
vote
4answers
245 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 ...
1
vote
1answer
641 views
Cosine similarity and tf-idf
thanks for all the help you've given me before.
I just got one little question which seems to confused me.
TF-IDF and Cosine Similarity.
I was reading up on both and then on wiki under Cosine ...
1
vote
1answer
219 views
IDCT (inverse discrete cosine transformation) for Scheme impl. of jpeg decoder
Could someone explain me the inverse discrete cosine transform function and probably give me an implementation of it in Scheme/Racket which operates on 8x8 blocks? If you don't know scheme maybe you ...
1
vote
3answers
329 views
Math.Cos & Math.Sin in C#
I'm trying something that I thought should be reasonably simple. I have an angle, a position and a distance and I want to find the X,Y co-ordinates from this information.
With an example input of 90 ...
1
vote
1answer
351 views
Fast vector difference/similarity measures
I'm working on a project where I am using genetic algorithms to generate word lists which best describe a text.
I'm presently using cosine similarity to do it, but it has two flaws: it's far too slow ...
1
vote
1answer
814 views
n-gram sentence similarity with cosine similarity measurement
I have been working on a project about sentence similarity. I know it has been asked many times in SO, but I just want to know if my problem can be accomplished by the method I use by the way that I ...
1
vote
4answers
979 views
How to use a Sine / Cosine wave to return an oscillating number
I'm new to Java programming, I am programming Java 1.6 with Android.
I have a simple function that makes a number go up and down between 0 and 200. I would like to put this into a Sine function but ...
1
vote
4answers
800 views
Accuracy of Math.Sin() and Math.Cos() in C#
I am terribly annoyed by the inaccuracy of the intrinsic trig functions in the CLR. It is well know that
Math.Sin(Math.PI)=0.00000000000000012246063538223773
instead of 0. Something similar ...
1
vote
1answer
662 views
statistical cosinor analysis,
Hey i am trying to calculate a cosinor analysis in statistica but am at a loss as to how to do so. I need to calculate the MESOR, AMPLITUDE, and ACROPHASE of ciracadian rhythm data.
...
1
vote
1answer
275 views
about cosine similarity
hi i m finding cosine similarity between documents ..i did like dis
D1=(8,0,0,1) where 8,0,0,1 are the tf-idf scores of the terms t1, t2, t3 , t4
D2=(7,0,0,1)
cos(theta) = (56 + 0 + 0 + 1) / ...
1
vote
1answer
351 views
Very fast document similarity
I am trying to determine document similarity between a single document and each of a large number of documents (n ~= 1 million) as quickly as possible. More specifically, the documents I'm comparing ...
1
vote
3answers
2k views
Find cosine similarity in R
I'm wondering if there is a built in function in R that can find the cosine similarity (or cosine distance) between two arrays?
Currently, I implemented my own function, but I can't help but think ...
1
vote
2answers
685 views
How do you efficiently implement a document similarity search system?
How do you implement a "similar items" system for items described by a
set of tags?
In my database, I have three tables, Article, ArticleTag and Tag. Each
Article is related to a number of Tags via a ...
1
vote
2answers
2k views
Cosine Similarity
Thank you all great guys here for helping people like me :)
I just need small hint ....
I calculated tf/idf values of two documents. Following is the tf/idf values
1.txt
0.0
0.5
2.txt
0.0
0.5
The ...
1
vote
3answers
2k views
Compare Two Vectors (Java)
Currently I have two larger vectors of 50+ strings
I want to be able to compare these two Vectors and work out how similar they are. I think I need to use Cosine similarity?
Does anyone know of any ...
1
vote
2answers
244 views
How to match Tagged items based on “similarity”
I have a real question.
I have a database with the schema as follows:
item
id
description
other junk
tag
id
name
item2tag
item_id
tag_id
count
Basically, each item is tagged as up to 10 ...
0
votes
1answer
27 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 ...
0
votes
0answers
31 views
Similarity between documents, Lucene(Cosine Similarity)
I'm new to Lucene. Let's assume that I have two documents which are read in TermFreqVector - s. How should I compute their similarity? Can someone provide me with a code snippet. I found that another ...
0
votes
1answer
111 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 ...
0
votes
2answers
89 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"
...
0
votes
3answers
380 views
Cosine similarity between two vectors in language R
I have 2 vectors with 11 dimentions.
a <- c(-0.012813841, -0.024518383, -0.002765056, 0.079496744, 0.063928973,
0.476156960, 0.122111977, 0.322930189, 0.400701256, 0.454048860,
...
0
votes
1answer
102 views
Similarity measure between 2 semantic vectors with COLT
I'm using spreading-activation to get related concepts to a given one.
If I want to calculate the similarity between 'London' and 'Paris', I get 2 vectors such as:
vector for 'Paris':
Paris : 1.0
...
0
votes
1answer
581 views
Cosine Similarity measure applied on images
I am trying to work on a project which requires me to find the similarity between two images. Can anyone help me with the matlab code for applying cosine similarity on images or any other useful ...
0
votes
1answer
315 views
Computing Cosine Similarity in Perl
How do I compute the cosine similarity distance of two documents in Perl? A few questions:
1) Are there already modules for computing the cosine similarity distance in CPAN? Or is this task easy ...
0
votes
0answers
259 views
Java Cosine Similarity Error
I am using getSimilarity(String s1, String s2) from the library : uk.ac.shef.wit.simmetrics.similaritymetrics.CosineSimilarity; to get the cosine similarity between two strings.
Well the problem is ...
0
votes
1answer
383 views
How do I calculate a cosinor analysis in SPSS, HELP!
How can I put this into spss???
http://www.cbi.dongnocchi.it/glossary/Cosinor.html
I am trying to calculate the MESOR for a cyclic pattern of circadian rhythm.
0
votes
2answers
751 views
Cosine Similarity Measure: Multiple results
My program uses clustering to produce subsets of similar items and then uses the cosine similarity measure as a method of determining how similar the clusters are. For instance if user 1 has 3 ...
-1
votes
1answer
237 views
using cosine and sin to find missing angles
how can i use cosine and sine in my iphone application to find the missing value of angles?
if i have a float that contains a number, how can i get the cosine of that angle. i used this example ...
-1
votes
1answer
523 views
Adjusted Cosine Similarity
Can you help me, please. I was confused to make PHP code about adjusted cosine similarity.
I have build data like this : $data[UserID][ItemID] = Rating
data example :
$data[1][1] = 5;
$data[1][2] = ...