vote up 17 vote down star
1

The question's pretty self-explanatory really. I know vaguely about vectors in maths, but I don't really see the link to C++ vectors. Thanks!

flag

11 Answers

vote up 30 vote down check

Mathematical definition of a vector is a member of the set Sn, which is an ordered sequence of values in a specific set (S). This is what a C++ vector stores.

link|flag
I see. I always imagined vectors as 2- or 3-dimensional, so I didn't see the connection with multi-dimensional vectors... – Skilldrick Feb 24 at 12:11
2  
Vectors are only typically considered 2-3 dimensional because of their use in physics. But more generally in mathematics, they just mean a set of numbers that has an order (mathematical sets are orderless, they're like a bag filled with stuff). A vector can have any number of elements. – Joseph Garvin Feb 24 at 13:47
@Skilldrick you're confusing vector in geometry or physics (Euclidean vector) with vector in linear algebra (coordinate vector). – vartec Feb 25 at 13:02
4  
vartec, can't a Euclidean vector be represented as a coordinate vector and vice versa? They're just different representations of the same thing (a tuple) in Euclidian space versus the more general vector space. – Calvin Apr 17 at 1:13
@Joseph Garvin: Vectors don't even need to have components that are numbers. For example, certain sets of functions can be used to form vector spaces where the components are functions. – Jason Sep 15 at 20:56
vote up 11 vote down

It's called a vector because Alex Stepanov, the designer of the Standard Template Library, was looking for a name to distinguish it from built-in arrays. He admits now that he made a mistake, because mathematics already uses the term 'vector' for a fixed-length sequence of numbers. Now C++09 will compound this mistake by introducing a class 'array' that will behave similar to a mathematical vector.

Alex's lesson: be very careful every time you name something.

link|flag
Very interesting, thanks! – Skilldrick Apr 17 at 9:01
But array will also don't use heap allocation which makes moving it less efficiently. We also have std::valarray, btw. – sellibitze Sep 25 at 15:13
vote up 10 vote down

The name comes from the linear algebra, where vector is matrix with only one column or only one row.

link|flag
vote up 8 vote down

An excerpt from The C++ Programming Language by Bjarne Stroustrup:

"One could argue that valarray should have been called vector because it is a traditional mathematical vector and that vector should have been called array. However, this is not the way the terminology evolved."

link|flag
8  
Pfftt.. what does that guy know. I've never even heard of this "Bjarne Stroustrup" person. – Calvin Apr 17 at 0:35
vote up 4 vote down

Just to say why it probably isn't called array: Because std::vector has a dynamic size. An array conceptually is fixed in length. Next C++ Standard by the way has a std::array template, which is fixed in size and should be preferred over a plain array:

std::array<int, 4> f = { 1, 2, 3, 4 };
link|flag
vote up 3 vote down

Also if you make it store integers or floating points it does make an excellent type for storing N dimensional vectors. After all all a vector is, is a list of numbers kept in a specific order.

link|flag
vote up 2 vote down

No idea about the real reason, but C++ calling it a vector instead of an array, reduces confusion between the C and C++ structures, although they fulfill the same roles.

link|flag
vote up 1 vote down

A vector is simply a sequence of values, all of the same type. This is pretty much in line with the use in mathematics. I guess the mathematical idea that vectors should support some common operations (such as adding, and scaling by a scalar) are not carried over, the important aspect is mainly the structure.

link|flag
vote up 1 vote down

I'd guess it comes from the term row vector. Also, computer scientists love thinking up new names for things...

link|flag
vote up 0 vote down

So the real question is why is a physics vector (magnitue+direction) called a vector?

link|flag
vote up 0 vote down

Wonders that parametrisation on types does to names..

here a column gets blasted.. (view source for some server-side ASP.NET HTML encoding skills)

or was it a row?

Then again, thinking of it in MIMD or even SSE vector machine context, the name still sounds damn good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.