ocssw
V2022
|
Matrix.h File Reference
#include <iostream>
Include dependency graph for Matrix.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
float ** | initializeMatrix (int n) |
void | input (float **M, int n) |
void | printMatrix (float **M, int n) |
float ** | add (float **M1, float **M2, int n) |
float ** | subtract (float **M1, float **M2, int n) |