A one-dimensional array. Use vector-graphics for geometry.

learn more… | top users | synonyms (1)

1
vote
1answer
16 views

Error with the Copy constructor and equality operator

I am making my own implementation of the class "vector" with templates as practise. Everything seems to be working except the Copy constructor and the overloaded = operator. I am not sure where ...
1
vote
3answers
39 views

How to sort a Vector and Remove the Same Value in it?

I have a vector containing data such as: 15,27,40,50,15,40 I want to sort it and remove the same value, so the output after the sort should be: 15,27,40,50 I've tried several ways such: ...
3
votes
3answers
23 views

How to initialise a stringstream from a vector char

currently I am using a boost char array boost::array<char, 512> received_data; std::istringstream ss_(received_data.data()); but what if my received_data was a std::vector<char> ...
0
votes
1answer
43 views

All content of 2D Array is not saving in notepad .. why?

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { try{ Vector<Vector<Object>> data = data_totalPage; ...
0
votes
1answer
52 views

Error: Vector subscript out of range c++

I hope somebody can help me with this. I have tried to fix this program, but I don't know what else to so. I keep getting this error about a vector's subscript being out of range. However, I have ...
5
votes
3answers
46 views

Most efficient way for repeating a vector in Matlab

What is the most efficient way for repeating a vector? I'm currently under the impression that repmat is superior to any other methods? Or am I horribly wrong with this mindset? Would it be possible ...
-3
votes
0answers
59 views

Passing C++ array data to a main program from a function

I have been trying to write a C++ function that reads in a text file of financial data and passes it back to a main program. The last 4 parameters that must be read in are arrays of a dimension ...
3
votes
2answers
111 views

Why is the efficiency of std::deque so poor? [duplicate]

I wanted to use std::deque, but the overhead memory consumed seems too excessive. Am I doing something incorrectly? #include "windows.h" #include "psapi.h" #include <iostream> #include ...
0
votes
1answer
48 views

What is the R to C++ syntax for vectors?

I am an R and C programmer trying to use Rcpp to create an R (and C++) wrapper for a program written in C. I'm not really familiar with C++. Can someone help me understand the documentation on how ...
1
vote
1answer
27 views

Removing selected rows from opencv::Mat?

For some reasons I need to filter out rows of a Mat. (I need to filter out some descriptors of ORB) Which way do you suggest me? I haven't find any method to remove a single row from a Mat. So I was ...
3
votes
3answers
88 views

Is using a vector of boolean values slower than a dynamic bitset?

Is using a vector of boolean values slower than a dynamic bitset? I just heard about boost's dynamic bitset, and I was wondering is it worth the trouble. Can I just use vector of boolean values ...
2
votes
2answers
40 views

MPI BCast (broadcast) of a std::vector of structs

I've got a question regarding passing of a std::vector of structs via MPI. First off, details. I'm using OpenMPI 1.4.3 (MPI-2 compliant) with gcc. Note that I can't use boost MPI or OOMPI -- I'm ...
0
votes
1answer
69 views

C++ Vector manipulation errors

I am currently using a vector in my program, and I am getting some strange errors, which appeared only after I started using the class. The errors are: 1>MyCloth.obj : error LNK2019: unresolved ...
0
votes
1answer
64 views

vector cannot be initialized by {}

Hi I am a newbie in C++ and I just cannot initialize a vector using {}, even if the code is copied with a book. For example, when I do these vector <string> articles {"a", "an", "the"}; And ...
0
votes
2answers
82 views

C++ number of unique elements

Hi I have this function that gets the unique elements from a vector, but I was wondering how can make it get me the number of those unique elements as well. void getUniqueSellers(vector<string> ...
3
votes
1answer
72 views

C++ Generic Vector

Is it possible in c++ to create a vector of multiple types? I'd like to be able to build and iterate over a vector that contains many different types. For example: vector<generic> myVec; ...
1
vote
1answer
62 views

error C2039: 'serialize' : is not a member of vector type

#include<iostream> #include<boost/thread.hpp> #include<vector> #include<boost/asio.hpp> #include <ctime> #include <string> #include ...
-1
votes
1answer
45 views

Calculate euclidean distance between two vector (bag of words) in python

I use a a dictionary to represent word count in a article For example {"name" : 2 , "your": 10, "me", 20} to represent that "name" appears twice, "your" appears 10 times and "me" appears 20 times. ...
2
votes
5answers
56 views

Unexpected value of vector.back()

I've been going out of my mind about this one. #include <iostream> #include <vector> int main() { std::vector<int> a; std::vector<int *> b; a.push_back(13); ...
0
votes
2answers
28 views

Push_back in vector of objects from agreggate class

I'm having a little issue with vectors. From what I understand, push_back() will copy the argument and insert the copy in the vector. struct BridgeData { string name; string type; }; For a ...
0
votes
2answers
65 views

Need help working with Matrices in R

So write now I'm writing a function in R that looks at a set of vectors presented as a matrix, and two test vectors, and then checks each vector in the original set, and decides which of the two test ...
1
vote
2answers
35 views

Pointer to class variable from end of vector

I have a vector that has been sorted by lowest number to highest number. I know the highest number is contained within the last element of the vector. my class has a member called number. I want to ...
0
votes
2answers
59 views

Vector is not a Template?

I am currently trying to follow a tutorial on making a simple 2D tile engine for top-down RPGs. For some reason though I get the intellisense error vector is not a template The word "vector" is ...
1
vote
1answer
31 views

Retrieve 2D co-ordinate from a 3D point on a 3D plane

I have a point a point (x, y, z) that is on a plane defined by ax+by+cz+d=0. I'm trying to figure out what the (x', y') relative to the plane, where it has a starting point of (x0, y0, z0) and the ...
2
votes
4answers
98 views

Why does this C++ code cause a runtime error?

I get the following error when I try to run this code in Visual Studio 2010: Unhandled exception at 0x012c23d3 in matrix.exe: 0xC0000005: Access violation reading location 0xccccccd0. ...
5
votes
3answers
137 views

How do iterate through all sub vectors in a vector?

Lets say i have a class Foo. It contains a vector of type Foo. How can write a loop to iterate through the vector in foo and continually iterate through the sub vectors until we reach a level where on ...
1
vote
0answers
64 views

Push object away from another object

I'm trying to call a method 20 times per second to push point A away from point B. The method should use the following variables: Point A (X) Point A (Y) Point B (X) Point B (Y) Strength The ...
-10
votes
0answers
68 views

Vector C++ Test [closed]

Hi I have a c++ vector code that appends integers a and b. #include <vector> #include <iostream> using namespace std; template<typename T> void printVector(vector<T> v){ ...
0
votes
1answer
49 views

templates and use class object function to compute

i have two vectors of objects bus and car. i need to create a templates to minus the distance travelled by using template. the distance minus will only be done within the same objects like bus1.dis - ...
0
votes
3answers
39 views

Custom operators error when passing parameters c++

Im building custom operators and im having problems when passing parameters to them. For example class test{ public: test operator[](vector <string> s){ test a; ...
-1
votes
2answers
42 views

Printing data in a vector

I havent done C++ in a while. Im trying to get a vector of vectors to print data. I get the following error: Segmentation fault (core dumped) I am using an online complier to run the code. ...
0
votes
1answer
83 views

Return reference to stl vector

Im building a small C++ program and I'm implementing custom operators in a class. Also I'm working with STL vectors. However I'm stuck at the beginning. Here's my interface class: class test { ...
1
vote
4answers
65 views

How to add two arrays in Java in parallel manner?

For example, there are two huge (length 2-3 million) of the array float [] or double []. Need them very quickly add up. How to do it? Are there any libraries for this?
0
votes
1answer
48 views

string pop_back function error

I am having a problem with modifying a string. I appreciate your assistance; thank you! struct Drawings::menues { std::vector<std::string> variable; } Menue[numMenues]; ...
0
votes
0answers
85 views

C++ Attempting to use a vector

Needing to use a vector for a Film object I have. Having errors thrown at me and unsure as to where things need to be moved to or if I'm naming things wrong. Probably something blatantly obvious. ...
0
votes
2answers
34 views

How can I extract color values from an EPS file?

I'm trying to find all fill and stroke values used in an EPS file. I can parse the file, I just can't figure out how color values are defined in the EPS postscript section. I have converted the file ...
-4
votes
3answers
45 views

Checking equality of vector elements

Say we have the following vectors in matlab: v1=[2 2 2 2 2 2 2] v2=[2 2 2 2 3 2 2] How can we check that all the elements in each vector are equal or not? EDIT (NOTE) I'm not asking about ...
-4
votes
2answers
37 views

InputStream in Vector Form [closed]

I am trying to get vector as input from a socket and then parse the vector to find specific things in it. The confusion I am having is if I open an inputStream and use readline method to read from the ...
1
vote
2answers
89 views

C/C++ NaN resolution

When I'm running some code I have to add up the elements of a vector and then renormalize. I'm getting NaN so I'm hoping to resolve this. For example, when x = [1,2,3] is a vector<double> I ...
-1
votes
1answer
35 views

How to read the matrix values after “reshape” [closed]

Say for instance that I have the following vector: x=[1 2 3 4]; Here, the vector is read as follows: x1=1 x2=2 x3=3 x4=4 Is that correct? Now, if I do the following: y = reshape(x,2,2); I ...
0
votes
1answer
26 views

Trying to calculate the slope of a plane from a normal

I have a set of 3D normal vectors for points on a 3D mesh, and I need to calculate the slope of the area below each of them. I have no idea how to do this. I don't need X or Y slope, I just need the ...
3
votes
3answers
80 views

Reduce PDF file size of plots by filtering hidden objects

While producing scatter plots of many points in R (using ggplot() for example), there might be many points that are behind the others and not visible at all. For instance see the plot below: This ...
2
votes
1answer
30 views

Dynamically allocate SIMD Vector as array of doubles

I'm new to vectors and I've been having a read of the gcc documentation trying to get my head around it. Is it possible to dynamically allocate the size of a vector at run time? It appears as though ...
0
votes
1answer
40 views

Iterating over a vector defined in a struct

I am working on a non-binary tree structure, and so for that I have a struct defined as follows which has a data and all it's child are in a vector called child. struct node{ string data; ...
0
votes
3answers
86 views

Vector and []-operator overloading

I have inherited my class from std::vector. Now I want to overload the []-operator. When I try to assign a new value to my vector, e.g. v[0]=5, I should receive the message OK. This is my code (I ...
0
votes
3answers
62 views

Theory - How to Tell if Elements Overlap?

I have a question, and I don't want an implementation. I just want a bit of help in my reasoning. I want to determine if two objects overlap (their x and y coordinates, as well as their height and ...
2
votes
5answers
85 views

How do I Combine two equal sized vectors element wise in MatLab?

I have two vectors: a = [1 3 5 7 9]; b = [2 4 6 8 10]; That I need to combine together element wise. Meaning that I need the first element of vector a, then the first element of vector b, second ...
0
votes
1answer
29 views

To filter/subset a data frame based on character vector with R

I have a data frame look like this : data.frame' 45678 obs. of 130 variables $ Seqeunce : chr "AAAAAIGGR" "AAAAAIGGRPNYYGNEGGR" "AAAAASSNPGGGPEMVR" ... $ IDs : chr "1404" "4963" ...
0
votes
0answers
60 views

vector erase/remove_if compiles on msvc but not on gcc [closed]

i am getting the following error on gcc 4.7.2. it works fine msvc. why is it happening and how do i fix it? test.cpp: In function int main(int, char**): test.cpp:29:2: error: no matching function for ...
1
vote
2answers
53 views

Scheme / Racket Vector in Vector tranformation

I'm having a problem transforming a vector like this: #(#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3))) Into one like this: #(#(1 1 1 1 1) #(2 2 2 2 2) #(3 3 3 3 3)) I wrote a piece of test code but ...

1 2 3 4 5 130