2001-11-09 10:44:24 +00:00
|
|
|
#ifndef MATH_EXTERN_H
|
|
|
|
#define MATH_EXTERN_H
|
|
|
|
|
|
|
|
class NormalStream;
|
|
|
|
class MapleStream;
|
|
|
|
class MathMLStream;
|
|
|
|
class OctaveStream;
|
|
|
|
class WriteStream;
|
|
|
|
class MathArray;
|
|
|
|
|
|
|
|
void write(MathArray const &, WriteStream &);
|
|
|
|
void normalize(MathArray const &, NormalStream &);
|
|
|
|
void maplize(MathArray const &, MapleStream &);
|
|
|
|
void mathmlize(MathArray const &, MathMLStream &);
|
|
|
|
void octavize(MathArray const &, OctaveStream &);
|
|
|
|
|
2002-03-25 12:11:25 +00:00
|
|
|
bool extractNumber(MathArray const & ar, int & i);
|
|
|
|
bool extractNumber(MathArray const & ar, double & i);
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
#endif
|