0
votes
0answers
11 views
Pointers wanted: How to display image grids / plots with superimposed vector data?
A few years ago I participated in an MFC VC++ project to draw a grid of JPG or TIFF images and superimpose them with vector data of lines and shapes. Something like a plot of 4X6 images of areal …
0
votes
4answers
29 views
Vector class in a Flex Library Project
i seem to be having some problems with the Vector class in actionscript 3
in a Flex Project or an ActionScript Project it is possible to do this
var v:Vector.<String>;
But when i do the same …
6
votes
4answers
232 views
C++ Vector vs Array (Time)
I have got here two programs with me, both are doing exactly the same task. They are just setting an boolean array / vector to the value true. The program using vector
takes 27 seconds to run whereas …
1
vote
4answers
54 views
Converting a matlab matrix to a vector
I want to get a vector of elements of a Matlab matrix at predefined locations. For example, I have the following
>> i = [1,2,3];
>> j = [1,3,4];
>> A = [1,2,3,4; 5,6,7,8; …
3
votes
4answers
75 views
How to calculate end points of perpendicular line segments?
I know the end points of a line segment and the distance/size of the perpendicular end caps I'd like to create but I need to calcuate the end points of the perpendicular line. I've been banging my …
0
votes
6answers
129 views
std::vector of known sequences
I'm trying to learn C++ by doing everything "the C++ way". I'm writing a program where I have all of these known values (at compile time). Here is my problem:
In my constructor I want to check to …
1
vote
4answers
56 views
Replacement for vector accepting non standard constructable and not assignable types
I have a class test which isn't standard constructable nor assignable due to certain reasons. However it is copy constructable - on may say it behaves a bit like a reference.
Unfortunately I needed a …
2
votes
2answers
105 views
C++ dereference vector pointer to access element
Hi!
If i have in C++ a pointer to a vector:
vector<int>* vecPtr;
And i'd like to access an element of the vector, then i can do this by dereferncing the vector:
int a = (*vecPtr)[i];
but …
0
votes
2answers
53 views
Framework for building visually rich desktop applications?
Hi,
I've started building an app with Flex/Air but am getting sick of it's clunkyness.
The app that I'm building has similar behaviour to Prezi (www.prezi.com) but in a completely different field.
…
0
votes
6answers
150 views
array vs vector vs list
I am maintaining a fixed-length table of 10 entries. Each item is a structure of like 4 fields. There will be insert, update and delete operations, specified by numeric position. I am wondering which …
2
votes
11answers
207 views
resize versus push_back in std::vector : does it avoid an unnecessary copy assignment?
Hello people.
When invoking the method push_back from std::vector, its size is incremented by one, implying in the creation of a new instance, and then the parameter you pass will be copied into this …
0
votes
0answers
17 views
Openlayers vector layer
I want to have a vector layer of the world, which shows the country borders, states and their names in English. Is there a layer that exists that I can control the colours?
Cloudmade doesn't let me …
1
vote
5answers
165 views
Avoid making copies with vectors of vectors
I want to be able to have a vector of vectors of some type such as:
vector<vector<MyStruct> > vecOfVec;
I then create a vector of MyStruct, and populate it.
vector<MyStruct> …
0
votes
6answers
216 views
global vector C++
Is it possible to have a vector as a global variable is C++?
Like this:
class system {...};
vector<system> systems;
when I try to compile this I get an error. The compiler I'm using is gcc …
1
vote
3answers
125 views
Compare Two Vectors (Java)
Hi
Currently I have two larger vectors of 50+ strings
I want to be able to compare these two Vectors and work out how similar they are. I think I need to use Cosine similarity?
Does anyone know of …
