ESTER
Evolution STEllaire en Rotation
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Functions
matrix.cpp File Reference
#include "ester-config.h"
#include "utils.h"
#include "matrix.h"
#include <stdlib.h>
#include <cmath>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
Include dependency graph for matrix.cpp:

Functions

matrix operator- (double n, const matrix &a)
 
matrix operator- (const matrix &a)
 
matrix operator/ (double n, const matrix &a)
 
matrix ones (int nfil, int ncol)
 
matrix zeros (int nfil, int ncol)
 
matrix random_matrix (int nfil, int ncol)
 
matrix eye (int n)
 
matrix vector_t (double x0, double x1, int n)
 
matrix vector (double x0, double x1, int n)
 
double max (const matrix &a)
 
double min (const matrix &a)
 
double sum (const matrix &a)
 
double mean (const matrix &a)
 
matrix max (const matrix &a, const matrix &b)
 
matrix max (const matrix &a, double n)
 
matrix max (double n, const matrix &a)
 
matrix min (const matrix &a, const matrix &b)
 
matrix min (const matrix &a, double n)
 
matrix min (double n, const matrix &a)
 
int exist (const matrix &a)
 
int isequal (const matrix &a, const matrix &b)
 

Function Documentation

int exist ( const matrix a)
matrix eye ( int  n)

Here is the call graph for this function:

int isequal ( const matrix a,
const matrix b 
)
double max ( const matrix a)
matrix max ( const matrix a,
const matrix b 
)
matrix max ( const matrix a,
double  n 
)
matrix max ( double  n,
const matrix a 
)

Here is the call graph for this function:

double mean ( const matrix a)

Here is the call graph for this function:

double min ( const matrix a)
matrix min ( const matrix a,
const matrix b 
)
matrix min ( const matrix a,
double  n 
)
matrix min ( double  n,
const matrix a 
)

Here is the call graph for this function:

matrix ones ( int  nfil,
int  ncol 
)
matrix operator- ( double  n,
const matrix a 
)
matrix operator- ( const matrix a)
matrix operator/ ( double  n,
const matrix a 
)
matrix random_matrix ( int  nfil,
int  ncol 
)
double sum ( const matrix a)
matrix vector ( double  x0,
double  x1,
int  n 
)

Here is the call graph for this function:

matrix vector_t ( double  x0,
double  x1,
int  n 
)
matrix zeros ( int  nfil,
int  ncol 
)