Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Program to perform Matrix Transpose

Posted in C Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 55 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
C Program to perform Matrix Transpose

Photo Credit to CodeToFun

πŸ™‹ Introduction

Matrix operations are fundamental in various fields of computer science and mathematics. One common operation is the transpose of a matrix.

Transposing a matrix involves swapping its rows with columns, resulting in a new matrix where the rows of the original matrix become the columns, and vice versa.

In this tutorial, we'll explore a simple yet effective C program that performs the transpose operation on a given matrix.

Understanding and implementing matrix operations is essential for various applications, including graphics, scientific computing, and data manipulation.

πŸ“„ Example

Now, let's look at the C code that performs matrix transpose.

transposeMatrix.c
Copied
Copy To Clipboard
#include <stdio.h>

// Function to perform matrix transpose
void transposeMatrix(int matrix[10][10], int rows, int cols) {
  int transposedMatrix[10][10];

  // Performing the transpose operation
  for (int i = 0; i < cols; ++i) {
    for (int j = 0; j < rows; ++j) {
      transposedMatrix[i][j] = matrix[j][i];
    }
  }

  // Displaying the transposed matrix
  printf("Transposed Matrix:\n");
  for (int i = 0; i < cols; ++i) {
    for (int j = 0; j < rows; ++j) {
      printf("%d\t", transposedMatrix[i][j]);
    }
    printf("\n");
  }
}

// Driver program
int main() {
  // Replace these values with your matrix dimensions and elements
  int matrix[10][10] = {
    {1, 2, 3},
    {4, 5, 6}
  };
  int rows = 2;
  int cols = 3;

  // Call the function to perform matrix transpose
  transposeMatrix(matrix, rows, cols);

  return 0;
}

πŸ’» Testing the Program

To test the program with a different matrix, replace the values of matrix, rows, and cols in the main function.

Output
Transposed Matrix:
1       4
2       5
3       6

Compile and run the program to see the transposed matrix.

🧠 How the Program Works

  1. The program defines a function transposeMatrix that takes a matrix, number of rows, and number of columns as input and computes the transpose of the matrix.
  2. Inside the function, it uses nested loops to swap the rows with columns and stores the result in a new matrix transposedMatrix.
  3. The transposed matrix is then displayed.

🧐 Understanding the Concept of Matrix Transpose

Matrix transpose is a fundamental operation where the rows and columns of a matrix are swapped. If a matrix has dimensions m×n, its transpose will have dimensions n×m. The element at position (i, j) in the original matrix becomes the element at position (j,i) in the transposed matrix.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing optimizations based on the specific requirements of your application.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
3 months ago

If you have any doubts regarding this article (C Program to perform Matrix Transpose), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy