228k views
1 vote
Write a C++ program for matrix multiplication.

Ask the user the number of rows and columns for the first matrix. The number of rows for the 2nd matrix should be the number of columns for the 1st matrix. Columns for the 2nd matrix is again a user required field.
Once you have the dimensions, ask the user to enter the elements of the matrices term by term.
Make sure to use vector> for your matrices.
Once you have the 2 matrices, your task is to perform a matrix multiplication of the two matrices and store the result in a third matrix.
Required FunctionsA function that asks the user to input the terms of the matrix. This function should also initialize your matrix to its correct values and return it. The parameters passed to this should be the number of rows and columns. Since you need to enter two matrices, this will be called twice.
One function that takes in the two initialized matrices and returns a third matrix. This is the function where you perform the multiplication.A separate function to print a matrix. Using this function, print the original two matrices and then print the result matrix.
EX: if the input is:
Please specify the total row of your first matrix:
2
Please specify the total column of your first matrix:
2
Please specify the element of 0 row 0 col:
10
Please specify the element of 0 row 1 col:
-12
Please specify the element of 1 row 0 col:
55
Please specify the element of 1 row 1 col:
74
Please specify the total row of your second matrix:
2
Please specify the total column of your second matrix:
2
Please specify the element of 0 row 0 col:
-1
Please specify the element of 0 row 1 col:
0
Please specify the element of 1 row 0 col:
10
Please specify the element of 1 row 1 col:
20
the output is:
The input matrix A is:
10 -12
55 74
The input matrix B is:
-1 0
10 20
The final matrix is:
-130 -240
685 1480

User Bearfriend
by
7.8k points

1 Answer

2 votes

Final answer:

The C++ program provided uses vectors to store and manipulate two-dimensional matric matrices, taking user input to initialize the matrices, perform matrix multiplication, and print the results.

Step-by-step explanation:

Matrix Multiplication Program in C++

To write a C++ program for matrix multiplication, we will make use of vectors to store the matrices and create functions to perform tasks such as initializing the matrices with user input, multiplying the matrices, and printing the matrices. Below is a sample program that fulfills the requirements:

#include <iostream>
#include <vector>
using namespace std;
// Function to input matrix elements
typedef vector<int> Vec;
typedef vector<Vec> Matrix;
Matrix inputMatrix(int rows, int cols) {
Matrix matrix(rows, Vec(cols));
for(int i = 0; i < rows; i++) {
for(int j = 0; j < cols; j++) {
cout << "Please specify the element of " << i << " row " << j << " col: ";
cin >> matrix[i][j];
}
}
return matrix;
}
// Function to multiply two matrices
Matrix multiplyMatrices(const Matrix& A, const Matrix& B) {
int rowsA = A.size(), colsA = A[0].size(), colsB = B[0].size();
Matrix result(rowsA, Vec(colsB, 0));
for(int i = 0; i < rowsA; i++) {
for(int j = 0; j < colsB; j++) {
for(int k = 0; k < colsA; k++) {
result[i][j] += A[i][k] * B[k][j];
}
}
}
return result;
}
// Function to print matrices
void printMatrix(const Matrix& mat) {
for(const Vec& row : mat) {
for(int val : row) {
cout << val << " ";
}
cout << endl;
}
}
int main() {
int rowsA, colsA, rowsB, colsB;
cout << "Please specify the total row of your first matrix:";
cin >> rowsA;
cout << "Please specify the total column of your first matrix:";
cin >> colsA;
Matrix A = inputMatrix(rowsA, colsA);
rowsB = colsA; // Number of rows of B must be equal to number of cols of A
cout << "Please specify the total column of your second matrix:";
cin >> colsB;
Matrix B = inputMatrix(rowsB, colsB);
Matrix product = multiplyMatrices(A, B);
cout << "The input matrix A is:" << endl;
printMatrix(A);
cout << "The input matrix B is:" << endl;
printMatrix(B);
cout << "The final matrix is:" << endl;
printMatrix(product);
return 0;
}

This program uses three functions: inputMatrix asks the user for the dimensions and elements of the matrices, multiplyMatrices performs matrix multiplication, and printMatrix prints any given matrix. The user is prompted to enter the number of rows and columns for the first matrix, and the elements for both matrices.

User Ysth
by
7.1k points