0
votes
0answers
7 views
get similarity score between two document termfreqvectors
Hi
I would like to extract similarity score between two document termfreqvectors. I checked that if i submit the first one as a query and look the second in the result set, I cannot have the precise …
0
votes
1answer
18 views
ActionScript 3 Vector.<T> VS. Array
This question if a bit off topic, I just wanted feedback from most ActionScript/Flex developers out there.
So would you use a Vector. rather than an Array when you're expecting a collection of the …
0
votes
5answers
63 views
vectors vs. vector graphics
What (if any) is the relationship between vectors used in programming languages (e.g. arrays) and vector graphics?
Why do they share the term vector? Does it represent some analogous aspect of their …
0
votes
2answers
80 views
How to include dojox.gfx.SVG and dojox.gfx.VML in a custom Dojo build with cross-browser support?
Hello everyone.
I am using dojo.gfx to create vector shapes and text on my website and everything works fine when I am "dojo.require"-ing all dependencies in my Javascript. But when I'm building …
6
votes
4answers
292 views
Reversing strings in a vector using for_each and bind
Hi! I was wandering how it's possible to reverese strings that are contained in a vector using a single for_each command just in one "simple" line.
Yea, I know it is easy with a custom functor, but I …
1
vote
3answers
83 views
How do I create a regularly-spaced array of values in MATLAB?
How do I make an array that's defined with a start point, an end point, and a total array size? Something like an array that goes from 1 to 10 that's 20 elements long. For example, the array could …
1
vote
5answers
138 views
Searching a C++ Vector<custom_class> for the first/last occurence of a value
Hi,
I'm trying to work out the best method to search a vector of type "Tracklet" (a class I have built myself) to find the first and last occurrence of a given value for one of its variables. For …
1
vote
1answer
18 views
How to set a default parameter for a vector <string> for use in a default constructor within a class?
For example, a class named Table, with its constructor being:
Table(string name="", vector <string> mods);
How would I initialize the vector to be empty?
Edit:
Forgot to mention this was C++.
…
-1
votes
5answers
69 views
[Matlab] Storing Results of a Operation in a Matrix
Let's say I want to take the sin of 1 through 100 (in degrees).
I come from a C background so my instinct is to loop 1 through 100 in a for loop (something I can do in Matlab). In a …
2
votes
3answers
185 views
Given a start and end point, and a distance, calculate a point along a line
Looking for the quickest way to calculate a point that lies on a line
a given distance away from the end point of the line:
void calculate_line_point(int x1, int y1, int x2, int y2, int distance, …
2
votes
5answers
50 views
Java Error using Vectors: unchecked call to add(E)
Offending bit of code
Vector moves = new Vector();
moves.add(new Integer(x));
Error:
ConnectFour.java:82: warning: [unchecked] unchecked call to add(E) as a member of the raw type …
2
votes
4answers
178 views
Calculating point of intersection based on angle and speed
I have a vector consisting of a point, speed and direction. We will call this vector R. And another vector that only consists of a point and a speed. No direction. We will call this one T.
Now, what I …
0
votes
6answers
79 views
Java: Setting array length for an unknown number of entries
I am trying to fill a RealVector (from Apache Commons Math) with values. I tried using the class's append method, but that didn't actually add anything. So now I'm using a double[], which works fine, …
1
vote
1answer
18 views
How to move OpenLayers Vector programmatically?
The API documentation for OpenLayers.Feature.Vector says that Vector itself has no methods at all.
I know how to let user move the Vector by adding OpenLayers.Control.DragFeature control to map. So …
2
votes
5answers
91 views
What is the absolutely best way to recommend music? [closed]
Input a music title, and spit out a list of recommendations.
I am thinking:
1. Crawl data for playlists (you have to associate the elements somehow...)
2. Now what? How do you compare the vectors?
…
