0
votes
3answers
55 views
[Matlab] Filling in an Array
Can't find those on google for the life of me.
How do I make an array that's defined with a start and end point with the total size of the array defined.
Something like an array that goes from 1 to …
1
vote
1answer
16 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
64 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
5answers
47 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
171 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
76 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, …
2
votes
5answers
90 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?
…
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
3answers
179 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, …
8
votes
5answers
364 views
A colleague said don’t use java.util.Vector anymore - why not?
Previously I would always have thought a Vector was good to use for non-descript objects when length was unknown. As far as I was aware I thought it was thread-safe too
What would change that it …
1
vote
6answers
156 views
Suppose I have 2 vectors. What algorithms can I use to compare them?
Company 1 has this vector:
['books','video','photography','food','toothpaste','burgers'] ... ...
Company 2 has this vector:
['video','processor','photography','LCD','power supply', 'books'] ... …
1
vote
3answers
86 views
Runtime error: Access violation when using .push_back() with a std::vector?
I have a vector, defined by std::vector<LPDIRECT3DTEXTURE9> textures; Later, I am passing a LPDIRECT3DTEXTURE9 object to it, like so textures.push_back(texture); Here is a sample of this:
…
2
votes
2answers
67 views
How to store a vector of LPD3DXSPRITE objects?
Let's say I want to store a vector of LPD3DXSPRITE objects. The line to declare this code would be std::vector<LPD3DXSPRITE> sprites; I should be able to create my sprite with:
LPD3DXSPRITE …
1
vote
2answers
74 views
Are vector assignments copied by value or by reference in Google’s Go language?
In the following code, I create one peg puzzle then do a move on it which adds a move to its movesAlreadyDone vector. Then I create another peg puzzle then do a move on it which adds a move to its …
0
votes
8answers
181 views
c++ vector of class object pointers
Hi all,
What I am trying to do is essentially create two vectors of objects, where some objects are entered into both lists and some are just entered into one. The first problem I found was that when …
