10 Sep
2009
10 Sep
'09
1:33 p.m.
Hello! I got two-dimensional array class based on boost::multi_array class. I need to delete some certain column or row of it. How to delete it with keeping the data? For example I have 2D array 6x6, and i need to delete 3th row and 4th column with keeping data from other rows and columns. Is it simple method (multi_array class function or some smart method) or should i create new array 5x5 and copy data in it except 3th row and 4th column? Thanks!