tesseract++
0.0.1
N-dimensional tensor library for embedded systems
Loading...
Searching...
No Matches
core
include
math
atan.h
Go to the documentation of this file.
1
#ifndef ATAN_H
2
#define ATAN_H
3
4
namespace
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
math
Definition
atan.h:5
math::atan2
T atan2(T x)
Definition
atan.h:14
math::atan
T atan(T x)
Definition
atan.h:7
Generated by
1.9.8