NASA Logo
Ocean Color Science Software

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)
 

Function Documentation

◆ add()

float** add ( float **  M1,
float **  M2,
int  n 
)

Definition at line 27 of file Matrix.h.

◆ initializeMatrix()

float** initializeMatrix ( int  n)

Definition at line 3 of file Matrix.h.

◆ input()

void input ( float **  M,
int  n 
)

Definition at line 10 of file Matrix.h.

◆ printMatrix()

void printMatrix ( float **  M,
int  n 
)

Definition at line 18 of file Matrix.h.

◆ subtract()

float** subtract ( float **  M1,
float **  M2,
int  n 
)

Definition at line 35 of file Matrix.h.