Implement a class to represent a matrix

Assignment Help C/C++ Programming
Reference no: EM13164475

Implement a class to represent a matrix. While doing this exercise, you are allowed only to use C++ primitive types and arrays. You may not use STL in your Matrix definition. You must use dynamic memory.

class Matrix {

friend ostream &operator << (ostream &os, const Matrix &);
friend istream &operator >> (istream &is, Matrix &);
public:

Matrix(); // 1x1 matrix with its element = 0
   Matrix(int r, int c); // rxc matrix with all elements = 0
   Matrix(int r, int c, int *values[]) // initialize matrix with specific values
   Matrix(const Matrix &other); // copy ctor
   ~Matrix(); // destructor
   Matrix &operator(const Matrix &other);    // assignment operator
   int getElement(int r, int c) const;
   void setElement (int r, int c, int val);
   Matrix operator + (const Matrix &other) const;
   Matrix &operator += (const Matrix &other);
   Matrix transpose() const;
   int getNumRows() const;
   int getNumCols() const;
   bool isSymmetric() const;
private:
   int **data;
   int rows, cols;
};

You should throw and exception under illegal conditions (e.g., negative rows or cols, adding matrices with different sizes, etc.). For input and output matrices will be formatted as:


5 3

1 2 3

0 0 0

4 5 3

9 0 9

1 1 1

Reference no: EM13164475

Questions Cloud

State the normal boiling point of ethanol : The normal boiling point of ethanol (C2H5OH) is 78.3 °C and its molar enthalpy of vaporization is 38.56 kJ/mol. What is the change in entropy in the system in J/K when 62.2 grams of ethanol
Design, write, and test a program : Design, write, and test a program that represents some of the aspects of a student
Programmer does not have to use the def statement : Unlike Z+-, the programmer does not have to use the DEF statement to create a variable. Instead, the programmer can simply use the variable. The first use of the variable creates it and initializes it to 0.
State the complete eigen-function of the molecule : Before the collision what is the complete Eigen-function of the molecule? assuming the surface is located at x=0, and V (x =0)=0 and tha tthe molecule is located at a position X>>0. which means the molecule can be treated as a free mass in the re..
Implement a class to represent a matrix : Implement a class to represent a matrix. While doing this exercise, you are allowed only to use C++ primitive types and arrays. You may not use STL in your Matrix definition. You must use dynamic memory.
A lock variable not a good solution for mutual exclusion : why is busy waiting on a lock variable not a good solution for mutual exclusion?
Linear-time algorithm for computing the strong component : On the basis of a linear-time algorithm for computing the strong component containing a given vertex v, describe a simple quadratic-time algorithm for computing the strong components of a digraph.
Deliverable is to design an algorithm : Deliverable is to design an algorithm for a function that accepts an integer array as an argument and returns the total of values in the array. this is algorithm
What are the maturities on intel''s long-term debt : What are the maturities on Intel's Long-term debt and what are Intel's projected obligations on Long-Term Debt and Payments due by period?

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd