active questions tagged vector - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:38:59Z http://stackoverflow.com/feeds/tag/vector http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1874624/get-similarity-score-between-two-document-termfreqvectors 0 get similarity score between two document termfreqvectors maiky 2009-12-09T15:24:19Z 2009-12-09T21:32:07Z <p>Hi </p> <p>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 score that lucene gives for these two vectors?</p> <p>any help?</p> http://stackoverflow.com/questions/1876108/actionscript-3-vector-t-vs-array 0 ActionScript 3 Vector.<T> VS. Array just_a_dude 2009-12-09T19:07:12Z 2009-12-09T19:46:00Z <p>This question if a bit off topic, I just wanted feedback from most ActionScript/Flex developers out there.</p> <p>So would you use a Vector. rather than an Array when you're expecting a collection of the same "type" of objects (and publishing for fp10)</p> <p>Let me clear that out :</p> <p>I'm defining a method in a class that expects one parameter of type "Array"</p> <p>Let's say the method's signature looks like this : </p> <pre><code>public function doSomethingWithChildren(selectedChildren:Array):void; </code></pre> <p>I'm expecting that all the elements in the "selectedChildren" Array are of type "DisplayObject" (even thought it seems quite logical), so I thought that it would be a bit smarter to re-write this function this way : </p> <pre><code>public function doSomethingWithChildren(selectedChildren:Vector.&lt;DisplayObject&gt;):void; </code></pre> <p>So, basically the only thing I'd like to know is if you think this is the way to go </p> <p>Thanks for yer feedback</p> http://stackoverflow.com/questions/1874826/vectors-vs-vector-graphics 0 vectors vs. vector graphics R.A 2009-12-09T15:53:59Z 2009-12-09T16:11:42Z <p>What (if any) is the relationship between <em>vectors used in programming languages</em> (e.g. arrays) and <em>vector graphics</em>?</p> <p>Why do they share the term <em>vector</em>? Does it represent some analogous aspect of their nature or is it coincidence? </p> <p>When thinking about it, a bitmap image would fit the term vector graphic better since it's represented by an array of pixels..</p> http://stackoverflow.com/questions/1558841/how-to-include-dojox-gfx-svg-and-dojox-gfx-vml-in-a-custom-dojo-build-with-cross 0 How to include dojox.gfx.SVG and dojox.gfx.VML in a custom Dojo build with cross-browser support? Wolfram 2009-10-13T08:14:55Z 2009-12-08T23:40:28Z <p>Hello everyone.</p> <p>I am using <em>dojo.gfx</em> 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 everything I need in a custom build (especially <em>dojox.gfx</em>, <em>dojox.gfx.svg</em> and <em>dojox.gfx.vml</em>), Dojo's automatic differentiation for SVG-supporting browsers and IEs (VML) seems to be breaking.</p> <p>If I include only dojox.gfx.svg, IE breaks (see below), if I add dojox.gfx.vml, my scripts stop working in Firefox.</p> <p>In IE, the scripts break in the following line of my custom dojo build saying "Object doesn't support property or method":</p> <pre><code>*s.rawNode = _createElementNS(svg.xmlns.svg, "svg");* </code></pre> <p>with _createElementNS being commented with "Internal helper to deal with creating elements that are namespaced. Mainly to get SVG markup output working on IE.".</p> <p>Right know, I exclude both SVG and VML in my dojo build profile and let dojo xhrGet the rest. This works but requires three more requests (svg.js, shape.js, path.js, although the latter two are included in my build).</p> <p>What do I need to include in my build to make Vector shapes working in all browsers "out-of-the-box"?</p> <p>This is my build profile which works but requires the additional three requests (so neither svg nor vml are included explicitly):</p> <pre><code>dependencies ={ layers: [ { name: "mybuild-dojo.js", dependencies: [ "dojo.fx", "dojox.gfx", "dojox.gfx.shape", "dojox.gfx.path", "dojox.gfx.VectorText", "dojox.xml.DomParser", "dojox.image.Lightbox", "dojo.parser" ] } ], prefixes: [ [ "dijit", "../dijit" ], [ "dojox", "../dojox" ], ] </code></pre> <p>};</p> <p>Thank you for your answer.</p> http://stackoverflow.com/questions/1497063/reversing-strings-in-a-vector-using-foreach-and-bind 6 Reversing strings in a vector using for_each and bind fmuecke 2009-09-30T09:38:43Z 2009-12-08T08:17:28Z <p>Hi! I was wandering how it's possible to reverese <code>string</code>s that are contained in a <code>vector</code> using a single <code>for_each</code> command just in one "simple" line.</p> <p>Yea, I know it is easy with a custom functor, but I can't accept, that it can't be done using <code>bind</code> (at least I couldn't do it).</p> <pre><code>#include &lt;vector&gt; #include &lt;string&gt; #include &lt;algorithm&gt; std::vector&lt;std::string&gt; v; v.push_back("abc"); v.push_back("12345"); std::for_each(v.begin(), v.end(), /*call std::reverse for each element*/); </code></pre> <p><strong>Edit:</strong> Thanks a lot for those funtastic solutions. However, the solution for me was not to use the <a href="http://msdn.microsoft.com/en-us/library/bb982702.aspx" rel="nofollow">tr1::bind</a> that comes with the Visual Studio 2008 feature pack/SP1. I don't know why it does not work like expected but that's the way it is (<a href="http://blogs.msdn.com/vcblog/archive/2008/08/11/tr1-fixes-in-vc9-sp1.aspx#8852051" rel="nofollow">even MS admits that it's buggy</a>). Maybe some <a href="https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=19103" rel="nofollow">hotfixes</a> will help.</p> <p>With boost::bind everything works like desired and is so easy (but sometimes relly messy:)). I really should have tried boost::bind in the first place...</p> http://stackoverflow.com/questions/1853891/how-do-i-create-a-regularly-spaced-array-of-values-in-matlab 1 How do I create a regularly-spaced array of values in MATLAB? bobber205 2009-12-05T23:44:25Z 2009-12-08T02:42:13Z <p>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 look something like:</p> <pre><code>1 1.5 2 2.5 3 3.5 ... </code></pre> http://stackoverflow.com/questions/1649139/searching-a-c-vectorcustomclass-for-the-first-last-occurence-of-a-value 1 Searching a C++ Vector<custom_class> for the first/last occurence of a value ianhales 2009-10-30T10:53:48Z 2009-12-07T18:28:30Z <p>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 example, I have the following classes (simplified for this example):</p> <pre><code>class Tracklet { TimePoint *start; TimePoint *end; int angle; public: Tracklet(CvPoint*, CvPoint*, int, int); } class TimePoint { int x, y, t; public: TimePoint(int, int, int); TimePoint(CvPoint*, int); // Relevant getters and setters exist here }; </code></pre> <p>I have a vector "<code>vector&lt;Tracklet&gt; tracklets</code>" and I need to search for any tracklets with a given value of "t" for the end timepoint. The vector is ordered in terms of end time (i.e. <code>tracklet.end-&gt;t</code>).</p> <p>I'm happy to code up a search algorithm, but am unsure of which route to take with it. I'm not sure binary search would be suitable, as I seem to remember it won't necessarily find the first. I was thinking of a method where I use binary search to find an index of an element with the correct time, then iterate back to find the first and forward to find the last. I'm sure there's a better way than that, since it wastes binary searches O(log n) by iterating.</p> <p>Hopefully that makes sense: I struggled to explain it a bit! Cheers!</p> http://stackoverflow.com/questions/1854241/how-to-set-a-default-parameter-for-a-vector-string-for-use-in-a-default-constru 1 How to set a default parameter for a vector <string> for use in a default constructor within a class? Omar 2009-12-06T03:20:31Z 2009-12-06T03:43:47Z <p>For example, a class named Table, with its constructor being: <code>Table(string name="", vector &lt;string&gt; mods);</code></p> <p>How would I initialize the vector to be empty?</p> <p>Edit: Forgot to mention this was C++.</p> http://stackoverflow.com/questions/1850534/matlab-storing-results-of-a-operation-in-a-matrix -1 [Matlab] Storing Results of a Operation in a Matrix bobber205 2009-12-05T00:18:35Z 2009-12-05T09:33:23Z <p>Let's say I want to take the sin of 1 through 100 (in degrees).</p> <p>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 matrix/vector/array I would store sin(x) where x is the counter of the for loop. </p> <p>I cannot figure out how to do this in Matlab. Do I create a array like </p> <pre><code>x = [1 .. 100]; </code></pre> <p>And then do </p> <pre><code>x[offset] = numberHere; </code></pre> <p>I know the "correct" way. For operations like addition you use .+ instead of + and with a function like sin I'm pretty sure you just do</p> <pre><code>resultArray = sin(x); </code></pre> <p>I just want to know that I <em>could</em> do it the C way in case that ever came up, thus my question here on SO. :)</p> http://stackoverflow.com/questions/1800138/given-a-start-and-end-point-and-a-distance-calculate-a-point-along-a-line 2 Given a start and end point, and a distance, calculate a point along a line amanda 2009-11-25T21:38:11Z 2009-12-05T02:01:59Z <p>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: </p> <pre><code>void calculate_line_point(int x1, int y1, int x2, int y2, int distance, int *px, int *py) { //calculate a point on the line x1-y1 to x2-y2 that is distance from x2-y2 *px = ??? *py = ??? } </code></pre> <p>Thanks for the responses, no this is not homework, just some hacking out of my normal area of expertise.</p> <p>This is the function suggested below. It's not close to working. If I calculate points every 5 degrees on the upper right 90 degree portion of a circle as starting points and call the function below with the center of the circle as x2,y2 with a distance of 4 the end points are totally wrong. They lie below and to the right of the center and the length is as long as the center point. Anyone have any suggestions?</p> <pre><code>void calculate_line_point(int x1, int y1, int x2, int y2, int distance) { //calculate a point on the line x1-y1 to x2-y2 that is distance from x2-y2 double vx = x2 - x1; // x vector double vy = y2 - y1; // y vector double mag = sqrt(vx*vx + vy*vy); // length vx /= mag; vy /= mag; // calculate the new vector, which is x2y2 + vxvy * (mag + distance). px = (int) ( (double) x2 + vx * (mag + (double)distance) ); py = (int) ( (double) y2 + vy * (mag + (double)distance) ); </code></pre> <p>}</p> <p>I've found <a href="http://stackoverflow.com/questions/1250419/finding-points-on-a-line-with-a-given-distance">this</a> solution on stackoverflow but don't understand it completely, can anyone clarify?</p> http://stackoverflow.com/questions/1840590/java-error-using-vectors-unchecked-call-to-adde 2 Java Error using Vectors: unchecked call to add(E) kylex 2009-12-03T15:24:05Z 2009-12-03T15:36:09Z <p>Offending bit of code</p> <pre><code>Vector moves = new Vector(); moves.add(new Integer(x)); </code></pre> <p>Error:</p> <pre><code>ConnectFour.java:82: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector moves.add(new Integer(x)); </code></pre> <p>Not really sure how much info is needed for an error like this....</p> http://stackoverflow.com/questions/1839567/calculating-point-of-intersection-based-on-angle-and-speed 2 Calculating point of intersection based on angle and speed Jacks_Depression 2009-12-03T12:20:52Z 2009-12-03T14:42:29Z <p>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 am trying to do is to find the shortest intersection point of these two vectors. Since T has no direction, this is proving to be difficult. I was able to create a formula that works in CaRMetal but I can not get it working in python. Can someone suggest a more efficient way to solve this problem? Or solve my existing formula for X?</p> <p>Formula:</p> <p><img src="http://storage.bja888.com/formula.png" alt="Formula"></p> <p>Key:</p> <p><img src="http://storage.bja888.com/keys.png" alt="Definitions"></p> <p>Where o or k is the speed difference between vectors. R.speed / T.speed</p> http://stackoverflow.com/questions/1834428/java-setting-array-length-for-an-unknown-number-of-entries 0 Java: Setting array length for an unknown number of entries Rosarch 2009-12-02T17:18:27Z 2009-12-02T17:55:31Z <p>I am trying to fill a <a href="http://commons.apache.org/math/apidocs/org/apache/commons/math/linear/RealVector.html" rel="nofollow">RealVector</a> (from Apache Commons Math) with values. I tried using the class's <code>append</code> method, but that didn't actually add anything. So now I'm using a <code>double[]</code>, which works fine, except I don't know in advance how big the array needs to be.</p> <pre><code>private void runAnalysis() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException { Double attr; double[] data = new double[100]; // TODO: bad. int i = 0; for (Method m : ParseTree.class.getMethods()) { if (m.isAnnotationPresent(Analyze.class)) { attr = (Double) m.invoke(this); analysis.put(m.getAnnotation(Analyze.class).name(), attr); data[i++] = attr * m.getAnnotation(Analyze.class).weight(); } } weightedAnalysis = new ArrayRealVector(data); } </code></pre> <p>How can I deal with this issue? Here are my ideas:</p> <ol> <li><p>Iterate through the class and count the methods with the annotation, then use that size to initialize the array. However, this will require an extra loop, and reflection is performance-intensive. (right?)</p></li> <li><p>Pick an arbitrary size for the array, doubling it if space runs out. Downside: requires more lines of code</p></li> <li><p>Use a <code>List&lt;Double&gt;</code>, then somehow weasel the <code>Double</code> objects back into <code>doubles</code> so they can be put in the <code>RealVector</code>. Uses more memory for the list.</p></li> <li><p>Just pick a huge size for the starting array, and hope that it never overflows. Downside: this is begging for arrayindexoutofbound errors.</p></li> <li><p>Or am I just using <code>append(double d)</code> wrong? </p> <p>private void runAnalysis() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException { Double attr; weightedAnalysis = new ArrayRealVector(data);</p> <pre><code>for (Method m : ParseTree.class.getMethods()) { if (m.isAnnotationPresent(Analyze.class)) { attr = (Double) m.invoke(this); analysis.put(m.getAnnotation(Analyze.class).name(), attr); weightedAnalysis.append(attr * m.getAnnotation(Analyze.class).weight()); } } </code></pre> <p>}</p></li> </ol> http://stackoverflow.com/questions/1832285/how-to-move-openlayers-vector-programmatically 1 How to move OpenLayers Vector programmatically? Rene Saarsoo 2009-12-02T11:16:53Z 2009-12-02T13:35:51Z <p>The API documentation for <a href="http://dev.openlayers.org/apidocs/files/OpenLayers/Feature/Vector-js.html" rel="nofollow">OpenLayers.Feature.Vector</a> says that Vector itself has no methods at all.</p> <p>I know how to let user move the Vector by adding <a href="http://dev.openlayers.org/apidocs/files/OpenLayers/Feature/Vector-js.html" rel="nofollow">OpenLayers.Control.DragFeature</a> control to map. So if the user can move the Vector then there has to ba a way to move it programmatically too. But I can't figure out how to do it.</p> http://stackoverflow.com/questions/1832039/what-is-the-absolutely-best-way-to-recommend-music 2 What is the absolutely best way to recommend music? [closed] alex 2009-12-02T10:32:32Z 2009-12-02T10:55:50Z <p>Input a music title, and spit out a list of recommendations.</p> <p>I am thinking: 1. Crawl data for playlists (you have to associate the elements somehow...) 2. Now what? How do you compare the vectors?</p> <p>Any thoughts? I am looking for a purely algorithmic way of recommendations based on playlists. (don't analyze the sound files and stuff)</p> http://stackoverflow.com/questions/1742549/c-as-in-java-vector-of-vectors-with-variable-length-of-int 0 C++ as in Java?: vector of vectors with *variable* length of int Michael 2009-11-16T14:36:30Z 2009-12-02T10:39:37Z <p>My model would best use some</p> <p>v int[30][i][N_i];</p> <p>structure that is 30 vectors of tuples of ints, where </p> <p>v[0] is a dummy,<br> v[1] are plain ints (N_0 of them),<br> v[2] are pairs of int (N_1 pairs)<br> ...<br> v[29] would be 29-tuples of int (N_29 of them) </p> <p>This is <em>not</em> <code>vector&lt;vector&lt;int&gt;&gt;</code> like in "generic-vector-of-vectors-in-c"</p> <p>Apparently, the outer fixed dim=30 is no problem, the inner one is taken care of by the self-extending STL vector class.</p> <p>Is there any way to get the middle dimension fixed, but not constant?</p> http://stackoverflow.com/questions/1805666/how-to-store-a-vector-of-lpd3dxsprite-objects 2 How to store a vector of LPD3DXSPRITE objects? 4501 2009-11-26T21:13:35Z 2009-11-27T21:44:21Z <p>Let's say I want to store a vector of LPD3DXSPRITE objects. The line to declare this code would be <code>std::vector&lt;LPD3DXSPRITE&gt; sprites;</code> I should be able to create my sprite with:</p> <pre><code>LPD3DXSPRITE sprite = NULL; D3DXCreateSprite(myRenderingDevice, &amp;sprite); </code></pre> <p>Finally, I should be able to add this to the vector like so:</p> <pre><code>sprites.push_back(sprite); </code></pre> <p>At least with my understanding, that should be plausible. However, this compiles but gives runtime errors. Why is this? Am I going about it wrong? How might I fix it?</p> <p><strong>edit:</strong></p> <p>This may be helpful as well. The call stack yields for this function that <code>vector&lt;ID3DXSprite *, std::allocator&lt;ID3DXSprite *&gt;&gt;::push_back(ID3DXSprite * const &amp;_Val=0x0036fd38</code> is what is called. This is not the vector that it was passed.<br> However, LPD3DXSPRITE is just a typedef for ID3DXSprite *. Could this bring anything to light?</p> http://stackoverflow.com/questions/1658697/java-vector-and-thread-safety 2 java Vector and thread safety Guy 2009-11-01T23:03:03Z 2009-11-27T14:49:22Z <p>I'm wondering if this code will do any trouble:</p> <p>I have a vector that is shared among many threads. Every time a thread has to add/remove stuff from the vector I do it under a <code>synchronized</code> block. However, the main thread has a call:</p> <pre><code>System.out.println("the vector's size: "+ vec.size()); </code></pre> <p>which isn't <code>synchronized</code>.</p> <p>Should this cause trouble?</p> http://stackoverflow.com/questions/1804148/runtime-error-access-violation-when-using-pushback-with-a-stdvector 1 Runtime error: Access violation when using .push_back() with a std::vector? 4501 2009-11-26T14:55:31Z 2009-11-27T10:39:38Z <p>I have a vector, defined by <code>std::vector&lt;LPDIRECT3DTEXTURE9&gt; textures;</code> Later, I am passing a <code>LPDIRECT3DTEXTURE9</code> object to it, like so <code>textures.push_back(texture);</code> Here is a sample of this:</p> <pre><code>void SpriteManager::AddSprite(float x, float y, float z, LPDIRECT3DTEXTURE9 texture) { //snip textures.push_back(texture); //snip } </code></pre> <p>This is causing a runtime error. It is breaking in the vector class at the <code>size()</code> function. Why might this happen? </p> <p><strong>Edit:</strong></p> <p>I also run into an identical problem performing the same operation on a vector of <code>D3DXVECTOR3</code> objects. Since <code>LPDIRECT3DTEXTURE9</code> is a pointer to an <code>IDIRECT3DTEXTURE9</code>, should I be using that instead?</p> http://stackoverflow.com/questions/1807807/text-alignment-in-svg 0 Text alignment in SVG Smile ArT 2009-11-27T10:02:29Z 2009-11-27T10:02:29Z <p>How to make text with proportional font but an equal number of characters per line fully justified in SVG text box? Preferably with an svg-code example if it's possible.</p> http://stackoverflow.com/questions/1806673/are-vector-assignments-copied-by-value-or-by-reference-in-googles-go-language 1 Are vector assignments copied by value or by reference in Google's Go language? Brian T Hannan 2009-11-27T04:07:47Z 2009-11-27T05:47:39Z <p>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 movesAlreadyDone vector. When I print out the values in that vector for the second one, it has the move in it from the first one along with the move from the second one. Can anyone tell me why it seems to be assigning by reference and not value? Are vector assignments copied by value or by reference in Google's Go language?</p> <pre><code>package main import "fmt" import "container/vector" type Move struct { x0, y0, x1, y1 int } type PegPuzzle struct { movesAlreadyDone * vector.Vector; } func (p *PegPuzzle) InitPegPuzzle(){ p.movesAlreadyDone = vector.New(0); } func NewChildPegPuzzle(parent *PegPuzzle) *PegPuzzle{ retVal := new(PegPuzzle); retVal.movesAlreadyDone = parent.movesAlreadyDone; return retVal } func (p *PegPuzzle) doMove(move Move){ p.movesAlreadyDone.Push(move); } func (p *PegPuzzle) printPuzzleInfo(){ fmt.Printf("-----------START----------------------\n"); fmt.Printf("moves already done: %v\n", p.movesAlreadyDone); fmt.Printf("------------END-----------------------\n"); } func main() { p := new(PegPuzzle); cp1 := new(PegPuzzle); cp2 := new(PegPuzzle); p.InitPegPuzzle(); cp1 = NewChildPegPuzzle(p); cp1.doMove(Move{1,1,2,3}); cp1.printPuzzleInfo(); cp2 = NewChildPegPuzzle(p); cp2.doMove(Move{3,2,5,1}); cp2.printPuzzleInfo(); } </code></pre> <p>Any help will be greatly appreciated. Thanks!</p> http://stackoverflow.com/questions/1805987/suppose-i-have-2-vectors-what-algorithms-can-i-use-to-compare-them 1 Suppose I have 2 vectors. What algorithms can I use to compare them? alex 2009-11-26T22:39:54Z 2009-11-27T00:59:43Z <p>Company 1 has this vector:</p> <pre><code>['books','video','photography','food','toothpaste','burgers'] ... ... </code></pre> <p>Company 2 has this vector:</p> <pre><code>['video','processor','photography','LCD','power supply', 'books'] ... ... </code></pre> <p>Suppose this is a frequency distribution (I could make it a tuple but too much to type).<br> As you can see...these vectors have things that overlap. "video" and "photography" seem to be "similar" between two vectors due to the fact that they are in similar positions. And..."books" is obviously a strong point for company 1. Ordering and positioning does matter, as this is a frequency distribution.</p> <p>What algorithms could you use to play around with this? What algorithms could you use that could provide valuable data for these companies, using these vectors?</p> <p>I am new to text-mining and information-retrieval. Could someone guide me about those topics in relation to this question?</p> http://stackoverflow.com/questions/1801251/modifying-contents-of-vector-in-boostforeach 0 Modifying contents of vector in BOOST_FOREACH Jamie Cook 2009-11-26T02:30:49Z 2009-11-26T17:15:03Z <p>This is a question that goes to how BOOST_FOREACH checks it's loop termination</p> <pre><code>cout &lt;&lt; "Testing BOOST_FOREACH" &lt;&lt; endl; vector&lt;int&gt; numbers; numbers.reserve(8); numbers.push_back(1); numbers.push_back(2); numbers.push_back(3); cout &lt;&lt; "capacity = " &lt;&lt; numbers.capacity() &lt;&lt; endl; BOOST_FOREACH(int elem, numbers) { cout &lt;&lt; elem &lt;&lt; endl; if (elem == 2) numbers.push_back(4); } cout &lt;&lt; "capacity = " &lt;&lt; numbers.capacity() &lt;&lt; endl; </code></pre> <p>gives the output</p> <pre><code>Testing BOOST_FOREACH capacity = 8 1 2 3 capacity = 8 </code></pre> <p>But what about the number 4 which was inserted half way through the loop? If I change the type to a list the newly inserted number will be iterated over. The vector push_back operation will invalidate any pointers IF a reallocation is required, however that is not happening in this example. So the question I guess is why does the end() iterator appear to only be evaluated once (before the loop) when using vector but has a more dynamic evaluation when using a list?</p> http://stackoverflow.com/questions/1802102/is-there-a-version-of-the-removeelement-function-in-go-for-the-vector-package-lik 0 Is there a version of the removeElement function in Go for the vector package like Java has in its Vector class? Brian T Hannan 2009-11-26T07:35:34Z 2009-11-26T08:40:10Z <p>I am porting over some Java code into Google's Go language and I converting all code except I am stuck on just one part after an amazingly smooth port. My Go code looks like this and the section I am talking about is commented out:</p> <pre><code>func main() { var puzzleHistory * vector.Vector; puzzleHistory = vector.New(0); var puzzle PegPuzzle; puzzle.InitPegPuzzle(3,2); puzzleHistory.Push(puzzle); var copyPuzzle PegPuzzle; var currentPuzzle PegPuzzle; currentPuzzle = puzzleHistory.At(0).(PegPuzzle); isDone := false; for !isDone { currentPuzzle = puzzleHistory.At(0).(PegPuzzle); currentPuzzle.findAllValidMoves(); for i := 0; i &lt; currentPuzzle.validMoves.Len(); i++ { copyPuzzle.NewPegPuzzle(currentPuzzle.holes, currentPuzzle.movesAlreadyDone); copyPuzzle.doMove(currentPuzzle.validMoves.At(i).(Move)); // There is no function in Go's Vector that will remove an element like Java's Vector //puzzleHistory.removeElement(currentPuzzle); copyPuzzle.findAllValidMoves(); if copyPuzzle.validMoves.Len() != 0 { puzzleHistory.Push(copyPuzzle); } if copyPuzzle.isSolutionPuzzle() { fmt.Printf("Puzzle Solved"); copyPuzzle.show(); isDone = true; } } } } </code></pre> <p>If there is no version available, which I believe there isn't ... does anyone know how I would go about implementing such a thing on my own?</p> http://stackoverflow.com/questions/1798631/c-vector-of-class-object-pointers 0 c++ vector of class object pointers Nigel 2009-11-25T17:34:43Z 2009-11-25T18:04:39Z <p>Hi all,</p> <p>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 I used push_back() to add an object into both lists the object was copied so that when I changed it from one list the object did not change in the other. To get around this I tried to create a list of pointers to objects as one of the lists. However when I accessed the pointer later on the data seemed to be corrupted, the data member values were all wrong. Here are some snippets of my code:</p> <p>Definition of vectors:</p> <pre><code>vector&lt;AbsorbMesh&gt; meshList; vector&lt;AbsorbMesh*&gt; absorbList; </code></pre> <p>... Adding an object to both:</p> <pre><code>AbsorbMesh nurbsMesh = nurbs.CreateMesh(uStride, vStride); // Add to the absorption list absorbList.push_back(&amp;nurbsMesh); // Store the mesh in the scene list meshList.push_back(nurbsMesh); </code></pre> <p>Accessing the object:</p> <pre><code>if (absorbList.size() &gt; 0) { float receivedPower = absorbList[0]-&gt;receivedPower; } </code></pre> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1792134/a-colleague-said-dont-use-java-util-vector-anymore-why-not 8 A colleague said don't use java.util.Vector anymore - why not? ST 2009-11-24T18:52:54Z 2009-11-25T08:37:04Z <p>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</p> <p>What would change that it shouldn't be used anymore, and what is the alternative?</p> http://stackoverflow.com/questions/1794906/2d-vector-to-3d-vector 0 2D vector to 3D vector Alex 2009-11-25T05:42:16Z 2009-11-25T05:44:15Z <p>Hi guys</p> <p>I'm trying to make a circle across a plane using sin and cos. While it works all well when its aligned with the x, y, or z axis, I need something more dynamic. Is there any way to transform a 2D vector to a 3D one using a plane normal, or perhaps another solution?</p> <p>Thanks in advanced.</p> http://stackoverflow.com/questions/1787856/what-is-the-element-value-in-an-uninitialized-vector 0 What is the element value in an uninitialized vector? derrdji 2009-11-24T04:48:25Z 2009-11-24T16:28:17Z <p>If I create a vector like <code>vector&lt;myClass&gt; v(10);</code> what is the default value of each element?</p> <p><hr></p> <p>Also, what if it is a <code>vector&lt;myUnion&gt; v(10)</code> ?</p> http://stackoverflow.com/questions/1787966/what-is-the-capacity-of-an-empty-vector 2 what is the capacity of an empty vector? aJ 2009-11-24T05:21:26Z 2009-11-24T09:34:18Z <p>Looks like a stupid question. But comment to my <a href="http://stackoverflow.com/questions/1787856/what-is-the-element-value-in-an-uninitialized-vector/1787863#1787863">answer</a> to one of the SO question made me to think again.</p> <p>[ comment says, capacity need not be zero for empty vector]</p> <p>By default my answer would be 0 as there are no elements inside vector. It makes sense to keep the capacity as 0 and on the first allocation it can be increased without any performance hits.</p> <p>But standard does not say anything one this. ( I checked in Josuttis book as well). </p> <p>Is it purely implementation specific? Does any STL vendor use some arbitrary number as capcity for the empty vector? </p> <p>Any thoughts...</p> http://stackoverflow.com/questions/1783922/how-to-unit-test-the-sorting-of-a-stdvector 1 How to unit test the sorting of a std::vector ThisSuitIsBlackNot 2009-11-23T15:38:19Z 2009-11-24T07:42:28Z <p>I have never used unit testing before, so I'm giving CxxTest a go. I wrote a test to check if a function correctly sorts a std::vector. First I made sure the test failed when the vector wasn't sorted, and then as a sanity check I tested whether std::sort worked (it did, of course). So far, so good.</p> <p>Then I started writing my own sorting function. However, I made a mistake and the function didn't sort correctly. Since my test didn't output the intermediate states of a vector as it was being sorted, it was difficult to tell where I had gone wrong in my sorting function. I ended up using <code>cout</code> statements (I could have used a debugger) to find my bug, and never used the unit test until after I knew my sort function worked.</p> <p>Am I doing something wrong here? I thought unit testing was as simple as</p> <blockquote> <p>1) Write test<br> 2) Write function<br> 3) Test function<br> 4) If test fails, revise function<br> 5) Repeat 3 and 4 until test passes</p> </blockquote> <p>The process I used was more like</p> <blockquote> <p>1) Write test<br> 2) Write function<br> 3) Test function<br> 4) If test fails, debug function until it works correctly<br> 5) Repeat 3 (even though function is already known to work)</p> </blockquote> <p>I feel like my process was not truly TDD, because the design of my sorting function was not <em>driven</em> by the test I wrote. Should I have written more tests, e.g. tests that check the intermediate states of a vector as it's being sorted? </p>