Computing (n x n) Matrices’ Algebra

EasyChair Preprint 9498, version history

VersionDatePagesVersion notes
1
December 20, 2022
5
2
February 26, 2025
8

void Mult(matrix A, matrix B) {

for(i = 0; i < n; i++)

            for(j = 0; j < n; j++) {

                                    prod[i][j] = 0;

                                    for(a = 0; a < n; a++)

                                                prodt[i][j] += A[i][a] * B[a][j];

                        } 

SHOW(prod);

}

Keyphrases: Algorithms, Applied statistics, Matrices’ Determinants, Matrices’ Factorization, Matrices’ Inverses, Matrices’ Transposes, linear algebra, mathematics

BibTeX entry
BibTeX does not have the right entry for preprints. This is a hack for producing the correct reference:
@booklet{EasyChair:9498,
  author    = {Ishraga Mustafa Awad Allam},
  title     = {Computing (n x n) Matrices’ Algebra},
  howpublished = {EasyChair Preprint 9498},
  year      = {EasyChair, 2025}}