Matrix operations (Addition, subtraction and multiplication)

Write a program for matrix operations (Addition, subtraction, and multiplication).

1 . Addition of Two Matrices
C Program

#include <stdio.h>

int main()
{
    int matrixA[][3] = {{123}, {345}, {567}};
    int matrixB[][3] = {{342}, {462}, {325}};

    int n = 3m = 3;
    for (int i = 0i < ni++)
    {
        for (int j = 0j < mj++)
        {
            matrixA[i][j] = matrixA[i][j] + matrixB[i][j];
        }
    }

    printf("Addition of matrices is\n");
    for (int i = 0i < ni++)
    {
        for (int j = 0j < mj++)
        {
            printf("%d "matrixA[i][j]);
        }
        printf("\n");
    }
    return 0;
}

Output:

Addition of matrices is
4 6 5 
7 10 7 
8 8 12 

2. Subtraction of Two matrices
C Program

#include <stdio.h>

int main()
{
    int matrixA[][3] = {{123}, {345}, {567}};
    int matrixB[][3] = {{342}, {462}, {325}};

    int n = 3m = 3;
    for (int i = 0i < ni++)
    {
        for (int j = 0j < mj++)
        {
            matrixA[i][j] = matrixA[i][j] - matrixB[i][j];
        }
    }

    printf("Subtraction of matrices is\n");
    for (int i = 0i < ni++)
    {
        for (int j = 0j < mj++)
        {
            printf("%d "matrixA[i][j]);
        }
        printf("\n");
    }
    return 0;
}

Output:

Subtraction of matrices is
-2 -2 1 
-1 -2 3 
2 4 2 


3 . Multiplication of Two matrices
C Program
#include <stdio.h>

int main()
{
    int matrixA[][3] = {{123}, {345}, {567}};
    int matrixB[][3] = {{342}, {462}, {325}};

    int n = 3;

    int matrixC[3][3];

    for (int i = 0i < ni++)
    {
        for (int j = 0j < nj++)
        {
            matrixC[i][j] = 0;
            for (int k = 0k < nk++)
            {
                matrixC[i][j] = matrixC[i][j] + matrixA[i][k] * matrixB[k][j];
            }
        }
    }

    printf("Multiplication of matrices is\n");
    for (int i = 0i < ni++)
    {
        for (int j = 0j < nj++)
        {
            printf("%d "matrixC[i][j]);
        }
        printf("\n");
    }
    return 0;
}

Output:

Multiplication of matrices is
20 22 21 
40 46 39 
60 70 57 


No comments:

Post a Comment