Skip to main content

Some Operations on Matrix

A few days back someone asked me a question via email which I thought might be useful to others too. So I’m listing that question along with its answer below.

Q. I want to write a program such that users enter the value of matrix and each operation (listed below) is performed by functions. I want to use switch structure to call the functions.

1. Rotate the matrix around the diagonal.

Example:

   1 2 3 ---> 1 4 7
   4 5 6      2 5 8
   7 8 9      3 6 9

2. Rotate the matrix around the middle row.

Example:

   1 2 3 ---> 7 8 9
   4 5 6      4 5 6
   7 8 9      1 2 3

3. Rotate the matrix around the middle column.

Example:

   1 2 3 ---> 3 2 1
   4 5 6      6 5 4
   7 8 9      9 8 7

4. Set the upper triangle to zero.

Example:

   1 2 3 ---> 1 0 0
   4 5 6      4 5 0
   7 8 9      7 8 9

Ans. The following program does it. Please note that the matrix is declared as global so as to reduce complications in the program. Better way should have been to pass the matrix (local) to the functions from main().


  // Program that does some Rotations
  // about certain axes in two
  // dimensional arrays
  #include <iostream.h>

  // change this to hold more
  // values in the array
  #define MAX 3

  // it is declared to be global
  // so that every function can access it
  int ar[MAX][MAX];

  // function prototypes
  void EnterVal();
  void rDiagonal();
  void rMidRow();
  void rMidCol();
  void sUpperZero();
  void Show();

  void main()
  {
    int ch;

    // loop until 'quit' is not selected
    while(ch!=6)
    {
      cout<<"1> Enter Values\n";
      cout<<"2> Rotate around Diagonal\n";
      cout<<"3> Rotate around the Middle row\n";
      cout<<"4> Rotate around the Middle column\n";
      cout<<"5> Set the Upper triangle to zero\n";
      cout<<"6> Quit\n\n";

      cin>>ch;

      // do as per choice
      switch(ch)
      {
      case 1:
        EnterVal();
        break;

      case 2:
        rDiagonal();
        Show();
        break;

      case 3:
        rMidRow();
        Show();
        break;

      case 4:
        rMidCol();
        Show();
        break;

      case 5:
        sUpperZero();
        Show();
        break;
      }
    }
  }

  // --------------------
  // Function Definitions
  void EnterVal()
  {
    int i,j;

    cout<<"Enter Values\n";

    for(i=0;i<MAX;i++)
      for(j=0;j<MAX;j++)
        cin>>ar[i][j];
  }

  void rDiagonal()
  {
    int temp,i,j;

    for(i=0;i<MAX;i++)
      for(j=i;j<MAX;j++)
      {
        temp=ar[i][j];
        ar[i][j]=ar[j][i];
        ar[j][i]=temp;
      }
  }

  void rMidRow()
  {
    int temp,i,j;

    for(i=0;i<(MAX-1)/2;i++)
      for(j=0;j<MAX;j++)
      {
        temp=ar[(MAX-1)-i][j];
        ar[(MAX-1)-i][j]=ar[i][j];
        ar[i][j]=temp;
      }
  }

  void rMidCol()
  {
    int temp,i,j;

    for(i=0;i<MAX;i++)
      for(j=0;j<(MAX-1)/2;j++)
      {
        temp=ar[i][(MAX-1)-j];
        ar[i][(MAX-1)-j]=ar[i][j];
        ar[i][j]=temp;
      }
  }

  void sUpperZero()
  {
    int i,j;

    for(i=0;i<(MAX+1)/2;i++)
      for(j=i;j<MAX-i;j++)
        ar[i][j]=0;
  }

  void Show()
  {
    int i,j;

    for(i=0;i<MAX;i++)
    {
      for(j=0;j<MAX;j++)
        cout<<ar[i][j]<<"   ";

      cout<<endl;
    }
    cout<<"\n\n";
  }

Related Articles:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope