1
vote
3answers
29 views
Easy Trig - Move an object in a position
I know this is quite easy trigonomety, however I was never introducted to vectors etc, and I'm at a loss understanding how this works.
Given an object at point XY, and a direction …
0
votes
4answers
103 views
stl vector and c++: how to .resize without a default constructor?
how could I tell STL, specifically for the method resize() in vector, to initialize objects with a constructor other than default, and with which parameters?
I mean:
class someth …
1
vote
4answers
47 views
Erasing a vector element by key
ive defined the following and filled it with elements:
vector <vector<double> > my_vector;
but i want a delete an element with a specific key...
my_vector.erase(int …
0
votes
2answers
108 views
C++ vector to pointer of pointers
Is there a way to convert a vector to a pointer to a pointer (ptr-to-ptr).
Background:
I have an arbitrary length set of data stored in a vector. But I have a library of algorithm …
0
votes
4answers
141 views
Convert std::vector<char*> to a c-style argument vector arv
I would like to prepare an old-school argument vector (argv) to use within the function
int execve(const char *filename, char
*const argv[],char *const envp[]);
I tried it …
2
votes
3answers
36 views
Converting vector-contoured regions (borders) to a raster map (pixel grid)
I have a map that is cut up into a number of regions by borders (contours) like countries on a world map. Each region has a certain surface-cover class S (e.g. 0 for water, 0.03 fo …
0
votes
5answers
104 views
split a string vector [R]
I have the following vector:
tmp3 <- c("1500 2", "1500 1", "1510 2", "1510 1", "1520 2", "1520 1", "1530 2",
"1530 1", "1540 2", "1540 1")
I would like to just retain the se …
0
votes
3answers
77 views
Declaration with no type…
I am confused.
I do this:
#include <vector>
// List iteration
typedef vector<registeredObject>::iterator iterator;
typedef vector<registeredObject>::const_iter …
1
vote
3answers
85 views
sort using boost::bind
bool pred(int k, int l, int num1, int num2)
{
return (num1 < num2);
}
int main()
{
vector <int> nums;
for (int i=50; i > 0; --i)
{
nums.push_back(i);
…
4
votes
1answer
67 views
How do I generate the following matrix and vector from the given input data in MATLAB?
Suppose I have the inputs data = [1 2 3 4 5 6 7 8 9 10]
and num = 4. I want to use these to generate the following:
i = [1 2 3 4 5 6; 2 3 4 5 6 7; 3 4 5 6 7 8; 4 5 6 7 8 9]
o = [5 …
1
vote
4answers
179 views
Need a vector that derives from a vector.
Hi,
Consider this simple code:
class A {
};
class V1: vector<A *>{
// my nice functions
};
if I have a instance of V1, then any object derived from A can be inserted i …
3
votes
3answers
180 views
Memset on vector C++
Is there any equivalent function of memset for vectors in C++. (Not clear() or erase() method, I want to retain the size of vector, I just want to initialize all the values)
1
vote
7answers
169 views
c++ vector random shuffle part of it
Whats the best way to shuffle a certain percentage of elements in a vector.
Say I want 10% or 90% of the vector shuffled.
Not necessarily the first 10% but just 10% across the boa …
0
votes
6answers
60 views
vector and garbage collector
I'm running a java program that uses many vectors. I'm afraid my use of them is causing the garbage collector not to work.
I have many threads that do:
vec.addAll(<collection& …
1
vote
4answers
57 views
java Vector and thread safety
I'm wondering if this code will do any trouble:
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 sync …
