|
Computing (n x n) Matrices’ AlgebraEasyChair Preprint 9498, version historyVersion | Date | Pages | Version 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); } | 3 | March 5, 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++) prod[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 |
|
|