473,396 Members | 1,866 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Designing a Matrix class

Hi,

I'm implementing a Matrix class, as part of a project. This is the interface
I've designed:

class Matrix( )

{

private:

vector< vector<int> > m_Data;
pair<int, int> m_size;
public:

Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);

~Matrix();
....................................

}

I have a couple of questions:

1. Is there a better way to model the data structure other than a vector of
vectors? I realize I can write up the Matrix class from scratch, but I want
to use STL containers.

2. If I use a vector of vectors, how would dynamic memory allocation work? I
don't fully understand how STL's vector handles memory. For example, to
resize a matrix, how would I "delete" the memory for the old matrix? Would
the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?

Thanks in advance!!

-CK


Jul 22 '05 #1
13 16686
Hi, I'm implementing a Matrix class, as part of a project. This is the
interface I've designed:

class Matrix( )
{
private:
vector< vector<int> > m_Data;
pair<int, int> m_size;
public:
Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);
~Matrix();
....................................
}

I have a couple of questions:
1. Is there a better way to model the data structure other than a vector of
vectors? I realize I can write up the Matrix class from scratch, but I want
to use STL containers.

2. If I use a vector of vectors, how would dynamic memory allocation work? I
don't fully understand how STL's vector handles memory. For example, to
resize a matrix, how would I "delete" the memory for the old matrix? Would
the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?

Thanks in advance!!
-CK

Jul 22 '05 #2
Hi, I'm implementing a Matrix class, as part of a project. This is the
interface I've designed:

class Matrix( )
{
private:
vector< vector<int> > m_Data;
pair<int, int> m_size;
public:
Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);
~Matrix();
....................................
}

I have a couple of questions:
1. Is there a better way to model the data structure other than a vector of
vectors? I realize I can write up the Matrix class from scratch, but I want
to use STL containers.
2. If I use a vector of vectors, how would dynamic memory allocation work? I
don't fully understand how STL's vector handles memory. For example, to
resize a matrix, how would I "delete" the memory for the old matrix? Would
the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?

Thanks in advance!!
-CK
Jul 22 '05 #3
Hi, I'm implementing a Matrix class, as part of a project. This is the
interface I've designed:

class Matrix( )
{
private:
vector< vector<int> > m_Data;
pair<int, int> m_size;
public:
Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);
~Matrix();
....................................
}

I have a couple of questions:
1. Is there a better way to model the data structure other than a vector of
vectors? I realize I can write up the Matrix class from scratch, but I want
to use STL containers.

2. If I use a vector of vectors, how would dynamic memory allocation work? I
don't fully understand how STL's vector handles memory. For example, to
resize a matrix, how would I "delete" the memory for the old matrix? Would
the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?

Thanks in advance!!
-CK

Jul 22 '05 #4
"Charulatha Kalluri" <ck******@mathworks.com> wrote in message news:csfdc0
class Matrix( )
{
private:
vector< vector<int> > m_Data;
pair<int, int> m_size;
public:
Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);
~Matrix();


There's no need to write a copy constructor, operator=, or destructor as the
compiler generated one will suffice.

But I'd opt for one private member variable std::vector<int> m_Data that
would store the data by rows or columns. I find that on my implementation
(Windows or Linux on PCs, g++ or Borland or other compilers) you get faster
performance because memory allocation is faster. Then you'd implement
operator() like this

int Matrix::operator()(int row, int col) const {
return m_Data[row*numcols+col];
}

You can also easily write row and column iterators that don't do the
arithmetic, so will be very fast.

Jul 22 '05 #5
Charulatha Kalluri wrote:
Hi,

I'm implementing a Matrix class, as part of a project. This is the interface
I've designed:

class Matrix( )

{

private:

vector< vector<int> > m_Data;
pair<int, int> m_size;
public:

Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);

~Matrix();
....................................

}

I have a couple of questions:

1. Is there a better way to model the data structure other than a vector of
vectors? I realize I can write up the Matrix class from scratch, but I want
to use STL containers.

2. If I use a vector of vectors, how would dynamic memory allocation work? I
don't fully understand how STL's vector handles memory. For example, to
resize a matrix, how would I "delete" the memory for the old matrix? Would
the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?

Thanks in advance!!

-CK


First of all, you should make your Matrix class a template. Often
enough, you don't want matrices of integral values, but of double or
boolean.

Second, I can't see that part of the interface which gets you access to
the matrix data. You should implement operator[][] for example.

Third, I would consider not to hold a vector< vector<T> >, but separate
vectors, one for rows, one for columns (I think that was already said).
I can tell from my personal experience because I am currently
implementing a solver for linear optimization problems for a math
project at the university, and I found it most annoying to work with
vectors of vectors of T as matrix representations, because you can only
get the data in form of rows or values. However, by-column access is
needed quite often. I wish I would have known from the beginning.

As to the memory thing, I think std::vector<T> handles it as follows:
It will acquire space for several entries on construction (how much by
default is implementation defined I think, but you can explicitly pass
an initial size on construction). Now each time the vecor becomes too
small, it will -again- allocate as much space as it did on construction.
This makes sure the vector won't resize with each and every insertion.
In your case, size m for the row vector and size n for the column vector
seem to make sense (consider though, is it appropriate to resize a
matrix which was constructed as mxn? I don't think so. You would rather
discard it and create a new m'xn' matrix).

Just my 2 euro cents.
Jul 22 '05 #6

"Charulatha Kalluri" <ck******@mathworks.com> wrote in message
news:cs**********@fred.mathworks.com...
Hi, I'm implementing a Matrix class, as part of a project. This is the
interface I've designed:

class Matrix( )
{
private:
vector< vector<int> > m_Data;
pair<int, int> m_size;
public:
Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);
~Matrix();
....................................
}

I have a couple of questions:
1. Is there a better way to model the data structure other than a vector of vectors? I realize I can write up the Matrix class from scratch, but I want to use STL containers.


Yes, in fact a vector of vectors is a very bad way to implement a Matrix (at
least a mathematical one), because there is nothing that says the internal
vectors all have to be the same length.

The way to do it is to use a vector<T>, or perhaps a valarray<T> to provide
the internal representation of your data. You then have to build various
ways to view the data, keeping in mind the appropriate striding for the
matrix. There are tons of references about how to do this on the web .. try
a google search. A couple that I found useful in the past are:
Object oriented numerics: http://www.oonumerics.org/oon/
and the POOMA library: http://acts.nersc.gov/pooma/

Also, in chapter 22 of TC++PL 3rd ed., Stroustrup shows an example of how to
implement a Matrix using a std::valarray, along with some associated STL
helper classes for building different kinds of views. For me, the
non-aliasing restrictions placed on std::valarray were too strict, and I
ended up rolling my own using std::vector as an exercise, but the general
approach and examples he laid out were certainly useful.

HTH,

Dave Moore


Jul 22 '05 #7
Charulatha Kalluri wrote:
I'm implementing a Matrix class, as part of a project.
This is the interface I've designed:

class Matrix( )

{

private:

vector< vector<int> > m_Data;
pair<int, int> m_size;
public:

Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);

~Matrix();
....................................

} g++ -Wall -ansi -pedantic -c Matrix.cc Matrix.cc:1: error: expected unqualified-id before ')' token
Matrix.cc:3: error: expected `,' or `;' before '{' token

It doesn't even compile.
I have a couple of questions:

1. Is there a better way to model the data structure
other than a vector of vectors?
I realize I can write up the Matrix class from scratch
but I want to use STL containers.
Have you considered valarray?
Bjarne Stroustrup, "The C++ Programming Language: Third Edition",
Chapter 22: Numerics, Section 4: Vector Arithmetic,
Subsection 6: Slice_array, page 672.
2. If I use a vector of vectors, how would dynamic memory allocation work?
I don't fully understand how STL's vector handles memory.
For example, to resize a matrix,
how would I "delete" the memory for the old matrix?
Would the 'resize' and 'clear' functions guarantee proper memory management,
without leaks?


Take a look at
The C++ Scalar, Vector, Matrix and Tensor class Library

http://www.netwood.net/~edwin/svmtl/

then take a look at
The Object-Oriented Numerics Page

http://www.oonumerics.org/oon/
Jul 22 '05 #8
This is great - thanks for the responses!!

I've decided to go with a vector<T>, rather than valarray. (I don't have the
Stroustroup book, and there are time constraints on the project)

Also, I'm deriving Symmetric, Diagonal matrices, etc. from the main Matrix
class and plan to have a 'minimize( )' function that uses up less memory.
But this would also involve overloading almost all operators (arithmetic and
otherwise). Does this approach seem "natural", or does the inheritance seem
"forced"?

Thanks in advance
--CK

"E. Robert Tisdale" <E.**************@jpl.nasa.gov> wrote in message
news:cs**********@nntp1.jpl.nasa.gov...
Charulatha Kalluri wrote:
I'm implementing a Matrix class, as part of a project.
This is the interface I've designed:

class Matrix( )

{

private:

vector< vector<int> > m_Data;
pair<int, int> m_size;
public:

Matrix(unsigned int n);
Matrix(unsigned int m, unsigned int n);

~Matrix();
....................................

}

> g++ -Wall -ansi -pedantic -c Matrix.cc

Matrix.cc:1: error: expected unqualified-id before ')' token
Matrix.cc:3: error: expected `,' or `;' before '{' token

It doesn't even compile.
I have a couple of questions:

1. Is there a better way to model the data structure
other than a vector of vectors?
I realize I can write up the Matrix class from scratch
but I want to use STL containers.


Have you considered valarray?
Bjarne Stroustrup, "The C++ Programming Language: Third Edition",
Chapter 22: Numerics, Section 4: Vector Arithmetic,
Subsection 6: Slice_array, page 672.
2. If I use a vector of vectors, how would dynamic memory allocation work? I don't fully understand how STL's vector handles memory.
For example, to resize a matrix,
how would I "delete" the memory for the old matrix?
Would the 'resize' and 'clear' functions guarantee proper memory management, without leaks?


Take a look at
The C++ Scalar, Vector, Matrix and Tensor class Library

http://www.netwood.net/~edwin/svmtl/

then take a look at
The Object-Oriented Numerics Page

http://www.oonumerics.org/oon/

Jul 22 '05 #9
"Charulatha Kalluri" <ck******@mathworks.com> wrote in message
news:csjfjt$bb8
Also, I'm deriving Symmetric, Diagonal matrices, etc. from the main Matrix
class and plan to have a 'minimize( )' function that uses up less memory.
But this would also involve overloading almost all operators (arithmetic and otherwise). Does this approach seem "natural", or does the inheritance seem "forced"?


It seems forced to me because if Symmetric matrix inherits from Matrix, it
inherits all the functionality of the base class, inculding its data
structure. Sure, you could modify the base class data structure in the
derived class, but there are easier ways if you are designing from scratch.

You can make class Matrix abstract. It will just define an interface of
pure virtual functions, including a virtual destructor. For example

template <class T>
class Matrix {
public:
virtual ~Matrix();
virtual const T& operator()(size_type row, size_type col) const = 0;
virtual T& operator()(size_type row, size_type col) = 0;
};

The derived classes will be RegularMatrix, SymmetricMatrix, etc.
Jul 22 '05 #10
Siemel Naran wrote:
Charulatha Kalluri wrote:
Also, I'm deriving Symmetric, Diagonal matrices, etc.
from the main Matrix class
and plan to have a 'minimize( )' function that uses up less memory.
But this would also involve
overloading almost all operators (arithmetic and otherwise).
Does this approach seem "natural",
or does the inheritance seem "forced"?
It seems forced to me because if Symmetric matrix inherits from Matrix,
it inherits all the functionality of the base class,
inculding its data structure.
Sure, you could modify the base class data structure in the derived class,
but there are easier ways if you are designing from scratch.

You can make class Matrix abstract.
It will just define an interface of pure virtual functions,
including a virtual destructor. For example

template <class T>
class Matrix {
public:
virtual ~Matrix();
virtual const T& operator()(size_type row, size_type col) const = 0;
virtual T& operator()(size_type row, size_type col) = 0;
};

The derived classes will be RegularMatrix, SymmetricMatrix, etc.


I'm not sure what applications Charulatha Kalluri has in mind.
Most C++ programmers avoid this approach
for high performance numerical computing
because, for example, neither

operator()(size_type, size_type) const or
operator()(size_type, size_type)

can be inline'd.

Jul 22 '05 #11
"E. Robert Tisdale" <E.**************@jpl.nasa.gov> wrote in message
Siemel Naran wrote:
You can make class Matrix abstract.
It will just define an interface of pure virtual functions,
including a virtual destructor. For example

I'm not sure what applications Charulatha Kalluri has in mind.
Most C++ programmers avoid this approach
for high performance numerical computing
because, for example, neither

operator()(size_type, size_type) const or
operator()(size_type, size_type)

can be inline'd.


Good point. However, if one has numerical intensive functions like
FindEigenVectors or RotateMatrix, then one can write specialized functions
for each matrix type, possibly using templates

template <class SpecialMatrix>
void Rotate(SpecialMatrix&, double angle);

Then Rotate(AbstractMatrix&) calls one of the specialized functions. Not
saying this is the best approach or the worst, but it's at least something
to consider for our particular design.
Jul 22 '05 #12
Siemel Naran wrote:
E. Robert Tisdale wrote:
Siemel Naran wrote:

You can make class Matrix abstract.
It will just define an interface of pure virtual functions,
including a virtual destructor. For example

I'm not sure what applications Charulatha Kalluri has in mind.
Most C++ programmers avoid this approach
for high performance numerical computing
because, for example, neither

operator()(size_type, size_type) const or
operator()(size_type, size_type)

can be inline'd.


Good point. However, if one has numerical intensive functions
like FindEigenVectors or RotateMatrix,
then one can write specialized functions
for each matrix type, possibly using templates

template <class SpecialMatrix>
void Rotate(SpecialMatrix&, double angle);

Then Rotate(AbstractMatrix&) calls one of the specialized functions.
Not saying this is the best approach or the worst,
but it's at least something to consider for our particular design.


Our particular design?

I'm sorry that I didn't notice that
both you an Charulatha Kalluri work for The MathWorks

http://www.mathworks.com/

I have written *lots* of MATLAB code.
For MATLAB programmers, the priority stack looks like this:

0. convenience
1. reliability
2. performance

For high performance numerical computing
this priority stack is inverted:
0. performance
1. reliability
2. convenience

MATLAB works best if programmers can confine themselves
to the heavy weight functions that MATLAB provides but,
if programmers need to implement their own algorithms
and access matrix elements individually,
they will need to write Fortran, C or C++ subprograms
and call them from MATLAB.

I'm not sure why you want to implement a C++ class library
if you already have MATLAB.
One of the problems with MATLAB is that
there is just one type -- a double precision matrix.
This feature simplifies small MATLAB programs
but it makes it very difficult to write large reliable programs.
For example, there is no way for MATLAB to determine
that a vector or scalar function argument is required
until run time.
If you are going to implement a C++ matrix class,
then I *strongly* suggest that you implement a vector class as well.
Jul 22 '05 #13
Hello,
You can make class Matrix abstract.
It will just define an interface of pure virtual functions,
including a virtual destructor. For example

Thanks, this is what I've decided to do eventually.
I'm sorry that I didn't notice that
both you an Charulatha Kalluri work for The MathWorks

http://www.mathworks.com/
I'm not sure why you want to implement a C++ class library
if you already have MATLAB.
If you are going to implement a C++ matrix class,
then I *strongly* suggest that you implement a vector class as well.


Yes, I work there. However, this is a school project, not a work-related
one. The goal of the project is to demonstrate various OO concepts -
inheritance, STL, etc.. High performance is a plus, of course, but not the
main goal.

That said, thanks again for all your input :)
Jul 22 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Ben Ingram | last post by:
Hi all, I am writing a template matrix class in which the template parameters are the number of rows and number of columns. There are a number of reasons why this is an appropriate tradeoff for...
5
by: Jason | last post by:
Hello. I am trying to learn how operator overloading works so I wrote a simple class to help me practice. I understand the basic opertoar overload like + - / *, but when I try to overload more...
3
by: Huibuh | last post by:
In one of my header-files I have a class named "matrix" with the function to construct a matrix. It works properly but at the time of destruction of the class the program stops. What have I done...
15
by: christopher diggins | last post by:
Here is some code I wrote for Matrix multiplication for arbitrary dimensionality known at compile-time. I am curious how practical it is. For instance, is it common to know the dimensionality of...
7
by: check.checkta | last post by:
Hi, I'd like to implement a simple matrix class. I'd like to overload operator so that it returns as a vector (either the stl vector or some other Vector class of my own). The reason I want...
20
by: Frank-O | last post by:
Hi , Recently I have been commited to the task of "translating" some complex statistical algorithms from Matlab to C++. The goal is to be three times as fast as matlab ( the latest) . I've...
10
by: andrea | last post by:
I'm studying some graphs algorithm (minumum spanning tree, breath search first topological sort etc etc...) and to understand better the theory I'm implementing them with python... I made my own...
2
by: DarrenWeber | last post by:
Below is a module (matrix.py) with a class to implement some basic matrix operations on a 2D list. Some things puzzle me about the best way to do this (please don't refer to scipy, numpy and...
8
by: slizorn | last post by:
Hi guys, well i am learning c++ on my own.. i am studying it by refering to the book and doin its exercises. well i need help sorting out the errors.. and i am not sure wat destructors and...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.