KrisLibrary  1.0.0
ASCIIShade.h
1 #ifndef MATH_ASCII_SHADE_H
2 #define MATH_ASCII_SHADE_H
3 
4 #include "vector.h"
5 #include "matrix.h"
6 
7 namespace Math {
8 
9 char ASCIIShade(double x);
10 void OutputASCIIShade(std::ostream& out,double x);
11 void OutputASCIIShade(std::ostream& out,const fVector& x,float scale=0);
12 void OutputASCIIShade(std::ostream& out,const fMatrix& A,float scale=0,int indent=0);
13 void OutputASCIIShade(std::ostream& out,const dVector& x,double scale=0);
14 void OutputASCIIShade(std::ostream& out,const dMatrix& A,double scale=0,int indent=0);
15 
16 } //namespace Math
17 
18 #endif
Contains all definitions in the Math package.
Definition: WorkspaceBound.h:12