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