RML  1.0
Robotics Mathematical Library
Loading...
Searching...
No Matches
PseudoInverse_Internal.h
Go to the documentation of this file.
1/*
2 * PseudoInverse_Internal.h
3 *
4 * Created on: Feb 19, 2018
5 * Author: fraw
6 */
7
8#ifndef SRC_PSEUDOINVERSE_INTERNAL_H_
9#define SRC_PSEUDOINVERSE_INTERNAL_H_
10
11namespace rml {
12
13template <typename T> int sgn(T val) {
14 return (T(0) < val) - (val < T(0));
15}
16
17}
18
19
20#endif /* SRC_PSEUDOINVERSE_INTERNAL_H_ */
Types and algorithms for robotic mobile manipulation.
Definition ArmModel.h:19
int sgn(T val)
Definition Functions.h:281