Creating 2D Vectors in C++: A Quick Guide

  • Context: C/C++ 
  • Thread starter Thread starter Peter P.
  • Start date Start date
  • Tags Tags
    2d Vectors
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
Peter P.
Messages
23
Reaction score
0
I decided to make the switch from C to C++ and I'm having trouble with vectors. In C, I prefer to use dynamically allocated arrays when doing multidimensional arrays. But in C++, I know that there is the new function which replaced malloc. I read that when dealing with multidimensional arrays in C++, ideally a vector would be used.

So my question is, can someone just provide a quick run through of creating a 2D vector, changing the size of the vector, and then deleting it? Thank you in advance, any help is much appreciated.
 
Physics news on Phys.org
See the following thread for an example:

https://www.physicsforums.com/showthread.php?t=509358

One way to change the number of rows in the example linked above:
Code:
mymatrix.resize (numrows_new);
If this adds new rows (i.e. you increase the size), they'll be empty (zero length). If you want the new rows to have the same size as the existing ones:
Code:
mymatrix.resize (numrows_new, vector<double>(numcols));
In either case, if you decrease the number of rows, they're "chopped off" the end (bottom) of the matrix.
To change the number of columns, you have to change the size of each row:

Code:
for (int row=0; row<numrows; row++)
{
    mymatrix[row].resize(numcols_new);
}
 
Last edited: