math.cpp added
This commit is contained in:
+9
-5
@@ -1,12 +1,16 @@
|
||||
#ifndef MATH_H
|
||||
#define MATH_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
class ColumnVector;
|
||||
|
||||
class math {
|
||||
|
||||
class Math {
|
||||
public:
|
||||
double minVector(ColumnVector columnVector);
|
||||
double maxVector(ColumnVector columnVector);
|
||||
double minArray(std::vector<double> array);
|
||||
double maxArray(std::vector<double> array);
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //MATH_H
|
||||
#endif // MATH_H
|
||||
Reference in New Issue
Block a user