A one-dimensional array data structure. Use 'vector-graphics' for graphic display.
0
votes
0answers
11 views
What is the best way to generate vectors from bitmap source in WPF?
I have for example a bitmap image of a map , Each province is colored with unique color . My challenge is to create a vector shape from each province in the map by it's color .
Why I trying to do ...
0
votes
1answer
16 views
Trouble opening .dat file
Having a hard time trying to figure out what I'm doing wrong when trying to open "test.dat" file. It seems to be opening it, but not reading it to give output. The program is supposed to read the ...
2
votes
3answers
54 views
How to set two vector<unique_ptr<…>>'s equal to one another?
I am using Visual Studio 2012 C++ and I want to set two vectors with unique pointers equal to one another.
using namespace std;
vector<unique_ptr<Unit>> unitVector;
...
8
votes
2answers
59 views
R vectorized array data manipulation
I think there will be much more people interested into this subject.
I have some specific task to do in the most efficient way.
My base data are:
- time indices of buy and sell signals
- on the diag ...
0
votes
0answers
13 views
Calculate rotation between 2 sets of Vectors
I have 2 sets of 3D Vectors with N entries. I am trying to calculate the Rotation matrix which best aligns the first set with the second set.
I believe I can use the java library JAMA to accomplish ...
1
vote
2answers
66 views
vector of list memory leak in C++ on OSX 10.8
I'm having memory problems with in implementing a vector< list< size_t> >. Here's the code:
struct structure{
vector< list<size_t> > Ar;
structure(int n){
...
0
votes
0answers
39 views
Reading vector whose elements are separated by “ENTER”
I have a csv file of a vector like below (only head)
[1] "peoria ave [2] "wood dr [3] "blahblah
nste nphoenix" aaaaa"
...
0
votes
3answers
32 views
removing everything after first 'backslash' in a string
I have a vector like below
vec <- c("abc\edw\www", "nmn\ggg", "rer\qqq\fdf"......)
I want to remove everything after as soon as first slash is encountered, like below
newvec <- ...
1
vote
0answers
49 views
How to return std::vector<std::vector<int>> from C++ to C++/CLI?
In my solution I have C++/CLI (vs2012) project that executes some method in C++ (vs2010) project.
Here is a signature of native code:
void Pcl::Downsample(std::vector<CloudPointNative>& ...
0
votes
2answers
19 views
Matching of the Parameters in Vectors
I am trying to Learn Java as I am a beginner and recently i fumbled upon Vectors and Lists in Java. This is a very simple and a basic question, but any help would be really helpful for a learner.
I ...
1
vote
4answers
35 views
removing certain pattern from a string
I have a vector like below:
t <- c("8466 W Peoria Ave", "4250 W Anthem Way", .....)
I want to convert it into:
t_mod <-c("Peoria Ave", "Anthem Way".....)
That is I want to remove numbers ...
0
votes
2answers
68 views
C++ casting a fixed sized vector to a variably size vector
I would like to know if there is an easy solution for casting a fixed size vector to a variably sized vector.
double CApp::GetTargetCost(const vector<unsigned char> ...
-2
votes
0answers
4 views
image to vector - How to trace an image raster in expression design [closed]
image to vector - How to trace an image raster in expression design.
Looking for help on how to trace an image and convert it to vector in Microsoft Expression Design
0
votes
1answer
6 views
How to import or convert an Adobe EPS /PDF file into Microsoft Expression Design for editing
I use expression design by microsoft.
One limitation is the lack of import or convert from .EPF or PDF (an adobe file format) to Microsoft Expression to edit.
I wish microsoft would support this, ...
0
votes
1answer
41 views
Freeing memory allocated to a 2-dimensional vector
I have the following 2 dimension vector:
std::vector<std::vector<int>> m_scoreVector;
I try the following code to free the allocated memory. But, it does not work. Just a small portion ...
3
votes
2answers
41 views
calling a c++ function with argument that is a reference to vector element
i am writing a c++ program for solving maze (actually for maze solving line follower). For that i declared a global variable,
vector< node > node_container // to contain each node encountered
...
0
votes
2answers
57 views
Finding the set of n equally distant points
For simplicity, if I have a vector of points which looks something like:
x = c(1,4,5,8,9)
I'm trying to find the n points which are equidistant from one another. In this case my n=3 so my ideal ...
-1
votes
0answers
22 views
A function that changes a given vector
I'm creating a function which can change a given vector from 50th position (i.e. time series).
I had something like this:
LS=function(series) {
a=Arima(series,c(1,0,1))
e=residuals(a)
...
-4
votes
2answers
67 views
vector Declaration in c++ [closed]
I am trying to write a code using c++ for the first time and I found this line:
vector<vector<vector<double> > > h(hist1, vector<vector<double> >(hist2, ...
2
votes
1answer
73 views
Getting vector from matrix by overloading subscript operator()
I want to do something like this:
Matrix m; // (4x4 matrix)
Vector4 v; // (4-elements vector)
m(0) = v; // replace first 4-elements matrix row by vector v
v = m(0); // replace vector v by ...
0
votes
1answer
21 views
Can I use a dynamic array such as std::vector in objective-c structs
I am currently working on a game, where I am using the turn-based game api from apple's game center.
I have been trying to minimize the size of my data i'm sending over Game Center by using c ...
0
votes
0answers
13 views
Wrapper Class for boost::interprocess shared memory
By blending ideas from these two questions and their answers:
Shared Memory Wrapper
Shared Memory Vector Of Strings
I'm trying to write a wrapper class in C++ to give mutex synchronised ...
1
vote
1answer
27 views
How to scale a numeric vector in 1 or 2 steps in R?
I have a numeric vector as below:-
num <- c(1.2,2.3,2.4,4.6,1.43,8.99,7.12,6.77,......)
This vector is quite a big vector.
What I want to do is to replace all values between 1 and 2 with 1, ...
0
votes
0answers
16 views
JDBC query with vector<String> as WHERE part
I have a table MYTABLE with a column STRINGCOL of string constants.
I further have a Vector, lets call it theVector, with a subset of those constants in STRINGCOL.
I want to write such a query:
...
0
votes
0answers
12 views
Compare the similarity of entities with differing lengths in IDL
Okay so I have an array of objects. Each object has a vector of x and y co-ordinates in pixels.
I need to effectively go through and compare them to each other and say they're the same one.
(They're ...
2
votes
3answers
19 views
How to vectorize a sum of dot products between a normal and array of points
I need to evaluate following expression (in pseudo-math notation):
∑ipi⋅n
where p is a matrix of three-element vectors and n is a three-element vector. I can do this with for loops as follows ...
-7
votes
3answers
62 views
Howto understand pointer on vector in C++
class A {
public:
std::vector<int> & getIds(const int & item) const {
return ids[item];
}
private:
std::vector<int> * ids;
}
If ids is ...
0
votes
1answer
20 views
Matlab: datevec and CSV file
I'm reading a CSV file that looks like the following:
date time price volume exchange
20070813 10:26:38 7.626 3 E
20070925 12:58:24 7.535 69 E
20071218 ...
-1
votes
1answer
22 views
Finding values from a vector in an array
I have a vector called vvEq, which contains equipment numbers. And i have an array "long". Now i want to find the only rows in long which have the same equipment numbers as in vvEq. I found this code ...
0
votes
4answers
78 views
find_if can not detect the vector is empty
I want to use find_if from #include <algorithm>, however the problem is it can not recognize that the vector is empty or not.
Assume the following snippet
typedef std::vector< ...
0
votes
6answers
60 views
Java increase array by X size
I need an array that I can determine its size from the start and if it has no more empty spaces then increase its size by X. For example:
int arraySize = 2;
int[] intArray = new int[arraySize];
int ...
0
votes
1answer
74 views
Choosing between std::list and std::vector
I have wrote a code which tries to find the repetitions in a vector. In case of a repetition, it will add the position to a list. For example a sequence of 100 110 90 100 140 90 100 will be a 2D ...
1
vote
2answers
71 views
c++ iterators for vector of vectors
Why I am getting a segmentation fault ??
std::vector<std::vector<int> > cells;
std::vector<std::vector<int>::iterator> cellitr;
for(int i=0;i<10;i++)
{
...
0
votes
2answers
86 views
Freeing up memory by deleting a vector in a vector in C++
I have a vector of vectors and I wish to delete myvec[i] from memory entirely, free up the room, and so on. Will .erase or .clear do the job for me? If not, what should I do?
0
votes
2answers
72 views
C++ vector of vectors in class
I have a class in which vectors of doubles are stored like this this:
class clsHalfphoneUnitJoinFeatures : public CBaseStructure
{
private:
vector<double> m_content;
protected:
virtual ...
0
votes
0answers
13 views
Refresh JTable vectors after updating database
I have created a table using Netbean's GUI creator and populated it by using Vectors. I need to have the table data refreshed once any changes are made to the database.
I know I can use: ...
1
vote
0answers
18 views
Refresh JTable data after updating database
I have a JTable that I created with the Netbeans GUI creator and populated the table by using Vector objects. I want the table to be updated after a change is made to the database. I'm not sure how to ...
-5
votes
3answers
60 views
How to compare elements of two different vectors in the same position? [closed]
I'm still quite new to c++. I want to compare say, the first element of vector1 and the first element of vector2, the second element of vector1 and the second element of vector2 and so on. I want to ...
0
votes
0answers
33 views
c++ A sliding sphere (character) on a static 3d mesh made of triangles
I am currently creating a 3d first person game in c++.
For the mechanics of the game I am looking for a way to calculate collision reactions of a player navigating a static scene built up with simple ...
-1
votes
0answers
29 views
Vector Maps for iOS?
I'm trying to build a location based game and i want to create a rich map environment for it.
For that, im looking at technologies that would deliver vector map data onto my device which i can use to ...
0
votes
3answers
63 views
Deleting Vectors By Index Using Iterator?
I have a quick question that's giving me some grief. As part of a much larger project, I want to scan a vector for elements that are 0 and, when I find them, delete them. I'm curious as to why the ...
2
votes
1answer
25 views
Using Matlab, how can I group rows by year into a structure?
Using Matlab, I am trying to build a structure that will store grouped rows of matrix X organized by year. The vector yrsStr has each year which will need to be grouped by. Please refer to matrix X ...
0
votes
0answers
71 views
Using “mod (%)” Operator For Getting Access to A Certain Element In the Vector
How can I use mod(%) operator to get access to a certain element in a vector in c++? The following line is already recognized erroneous by the compiler.
...
0
votes
2answers
25 views
C++ Static vector loses data after exiting function
I have a static function:
void TextManager::printDialogue(vector<Button*>* options, int optionsCount, vector<string> outputDisplayText)
{
active = true;
buttons = *options;
...
1
vote
1answer
28 views
Matlab: conditional partition of sorted vector into parts
Is there any smart way of diving sorted vector into two parts condtion on value?
A = [5 4 4 4 3 3 2 1];
I want two vectors, one that has all numbers greater than 3 and the other vector that ...
1
vote
2answers
55 views
Convert byte[] to Vector
I stored a Vector<'String> into a BLOB field in a sqlite DB.
The problem is when I want to get that Vector, it has to be with cur.getBlob (method from a Cursor cur) and it returns a byte[], the ...
0
votes
0answers
67 views
Application crashes on std::vector::insert
My application is crashing at the following line in an application that I am working on:
struct PointIndex
{
int PointNr;
};
struct PointIndex PI = { 0 };
std::vector<PointIndex> MyVec;
...
1
vote
3answers
37 views
Unresolved external symbol error while using vectors defined in a header file
I am new to C++. I had an unresolved external symbol error while using vectors and didn't know what was going wrong so I've replicated it here.
I am using MS Visual Studio 2011. The exact error is:
...
1
vote
4answers
56 views
Runtime Error when erasing elements from std::vector
I have a vector index which contains the indices of elements that I want to remove
from the vector words.
vector<int> Index;
vector<int> words;
I tried using this method, but my ...
2
votes
3answers
112 views
Unusual behavior with std::vector
I've written a rather complicated set of classes to deal with iterating over a stream (string, file or memory). These are NOT std streams nor are they related. Anyway, due to iterating over these ...

