tesseract++ 0.0.1
N-dimensional tensor library for embedded systems
Loading...
Searching...
No Matches
divide.h
Go to the documentation of this file.
1#ifndef DIVIDE_H
2#define DIVIDE_H
3
4namespace math
5{
6 template <typename T>
7 T divide(T x, T y)
8 {
9 std::cout << "divide generic" << std::endl;
10 return x; // Placeholder implementation
11 }
12}
13
14#endif // DIVIDE_H
Definition atan.h:5
T divide(T x, T y)
Definition divide.h:7