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