In: Economics
Matrix Calculator
Goals
The purpose of this lab is to get familiar with the software environment we will be using this term, and review some C++ concepts to get prepared for future projects and labs. This lab might be very time-consuming since there are a lot of concepts you need to pick up.
For this course, we will be compiling code on the flip server. It is advised to use vim editor on the flip server to program, but you are allowed to use other IDEs or text editors. Please test the program on flip server before turning it in.
Requirements
Files:
For simplicity, there are only 2 sizes of matrix for this program: either a 2x2 or a 3x3 matrix.
Create a matrix calculator program that consists of 5 files.
The program should have two functions:
Each function should have its own header files (.hpp) and source code (.cpp). Including the main file that contains main function to run the program, there should be 5 files for the program to be compiled and run properly.
main function:
The main function should contain following steps:
Note: please display the matrix in a square format, do not display it in a line.
void readMatrix():
The readMatrix() function has two parameters:
The function should prompt the user for all the numbers within the matrix, that means for 2x2 matrix, it should ask the user for 4 numbers, and 9 numbers for a 3x3 matrix. Because the function takes a pointer to the 2D array, it should not return anything.
int determinant():
The determinant() function has two parameters:
The function takes in the 2D array, which contains the value inside the matrix, and calculate the determinant. Afterwards, the function should return the determinant.
Note on how to calculate determinant of 2x2 and 3x3 matrices:
https://www.mathsisfun.com/algebra/matrix-determinant.html (Links to an external site.)Links to an external site.
Dynamic Memory
The program needs to dynamically allocate the 2D array in main function, and free the dynamically allocated memory when it is no longer in use. The following link can provide some hint:
http://stackoverflow.com/questions/936687/how-do-i-declare-a-2d-array-in-c-using-new (Links to an external site.)Links to an external site.
The program must use dynamic memory for this lab. This will help you understand how standard containers work.
If memories are allocated but never freed during program runtime, it will cause memory leak. We will enforce the memory leak check from this lab to future projects/labs. If you have memory leaks for lab 1, lab 2, and project 1, you will not be penalized for it. From lab 3 and project 2, if you still have memory leaks, TAs will take points off up to 10% of the grade.
Input validation
In this lab, you can assume users will only input integers when asked, and TAs won’t test the program using other types of input, but what if they do?
Input validation is very important, it prevents the program from crashing when user input the wrong type of input. For example, inputting a character “c” when prompted an integer.
Try to write an input validation function that checks the user inputs’ data type. It should return an error message if the input type does not match what is prompted, and recovers from it by re-prompting for input, until the user enters the correct data type.
Input validation is not required for this lab, but you need to start learning it since it will be required in the future.
Makefile
Once your program is working, create a makefile to build the program. You do not need a complicated makefile; you only need a makefile that have following two target (functionalities):
To get help on makefile, please watch the lecture videos, check out the make help sessions in the resource module on Canvas, and join the group discussions of makefile on Piazza.
What you need to submit:
Please put the 6 files into a zip archive. The name of the zip file should follow this format:
Lab1_LastName_FirstName.zip
Please submit ONLY the zip file on Canvas by the due date.
The following command is for zipping all the files: (entire command in one line)
zip –D Lab1_LastName_FirstName.zip file1.cpp file2.cpp file1.hpp file2.hpp main.cpp makefile
There should be no internal directories in the zip file, meaning the zip file should not create a new folder when unzipped (Please test the unzipping on flip server, since TAs will be grading on flip server)
Remember to back up your files in your local computer frequently if you are developing on flip. If you delete your files by accident on flip, you might not be able to get it back.
main.cpp
--------------------------------------------------------------------
#include <iostream>
#include <string>
#include "readMatrix.hpp"
using namespace std;
int main(){
//Prompt the user for the size of matrix to be calculated.
cout << "Welcome to the matrix determinant calculator!\n"
<< endl;
cout << "Please select the matrix size you would like to
input: " << endl;
cout << "\t (A): 2x2 matrix" << endl;
cout << "\t (B): 3x3 matrix\n" << endl;
char selection; //Stores matrix size selection
cin >> selection;
int size; //Size of matrix
//Uses selection from user to determine value to assign to
'size'
if (selection == 'A' || selection == 'a'){
size = 2;
}
else if (selection == 'B' || selection == 'b'){
size = 3;
}
else{
cout << "Your selection is invalid. Please start over."
<< endl;
return 0;
}
cout << "\nYou have selected a " << size << "x" << size << " matrix.\n" << endl;
//Initialize pointer array
int** matrix = new int*[size];
for (int i = 0; i < size; i++){
matrix[i] = new int[size];
}
readMatrix(matrix, size); //Sets up matrix by taking input from
user
int calc = determinant(matrix, size); //Calculates determinant
cout << "The " << size << "x" << size << " matrix is: " << endl;
//Displays the matrix on the console
for (int row = 0; row < size; row++){
for (int col = 0; col < size; col++){
cout << matrix[row][col] << "\t";
}
cout << "\n";
}
//Deletes stored data
for (int i = 0; i < size; i++){
delete[] matrix[i];
}
delete[] matrix;
cout << "\nThe determinant of the matrix is: " << calc << endl;
return 0;
}
-------------------------------------------------------------------------------------------------------
determinant.cpp
---------------------------------------------------
#include <iostream>
#include <string>
#include "readMatrix.hpp"
#include "determinant.hpp"
using namespace std;
int determinant(int** matrix, int size){
int detm_calc; //Determinant calculation variable
//Determine which formula to use - 2x2 or 3x3 matrix.
if (size == 2){ //2x2 case
int a = matrix[0][0];
int b = matrix[0][1];
int c = matrix[1][0];
int d = matrix[1][1];
detm_calc = (a*d) - (b*c);
}
else{ //3x3 case
int a = matrix[0][0];
int b = matrix[0][1];
int c = matrix[0][2];
int d = matrix[1][0];
int e = matrix[1][1];
int f = matrix[1][2];
int g = matrix[2][0];
int h = matrix[2][1];
int i = matrix[2][2];
detm_calc = a*(e*i - f*h) - b*(d*i - f*g) + c*(d*h - e*g);
}
return detm_calc;
}
---------------------------------------------------------------------------------------------------------
determinant.hpp
-----------------------------------------------------
#ifndef DETERMINANT_HPP
#define DETERMINANT_HPP
#include <string>
#include <iostream>
#include "readMatrix.hpp"
int determinant(int**, int);
#endif
-----------------------------------------------------------------------------------------------
readMatrix.cpp
-----------------------------------------------------
#include <iostream>
#include <string>
#include "readMatrix.hpp"
#include "determinant.hpp"
using namespace std;
void readMatrix(int** matrix, int size){
for (int i = 0; i < size; i++){
for (int j = 0; j < size; j++){
cout << "Please enter the integer for row " << i+1
<< " column " << j+1 << ":\t";
cin >> matrix[i][j];
}
cout << "\n";
}
}
-------------------------------------------------------------------------------------------
readMatrix.hpp
-----------------------------------------------------
#ifndef READMATRIX_HPP
#define READMATRIX_HPP
#include <string>
#include <iostream>
#include "determinant.hpp"
void readMatrix(int**, int);
#endif