RML  1.0
Robotics Mathematical Library
Loading...
Searching...
No Matches
SVD_Internal.h
Go to the documentation of this file.
1/*
2 * SVD_Internal.h
3 *
4 * Created on: Feb 19, 2018
5 * Author: fraw
6 */
7
8
9
10#ifndef SRC_SVD_INTERNAL_H_
11#define SRC_SVD_INTERNAL_H_
12
13namespace rml {
14
15const double RPY2VectEpsilon = 0.000000001;
16const unsigned long int MaxMatrixDim = 1300;
17const double SVDEpsilon = 0.00000001;
18
24double RaisedCosine(double in, double th, double lambda);
30short MatrixMultiply(const double* A, int m, int n, const double* B, char k, char p, double* OUT);
38void MatrixTranspose(const double* A, int m, int n, double* OUT);
39
43double SmoothTransition(double x, double beta, double xmin, double lambda);
47double SmoothFunction(double x, double beta, double lambda);
48
49}
50
51#endif /* SRC_SVD_INTERNAL_H_ */
Types and algorithms for robotic mobile manipulation.
Definition ArmModel.h:19
double SmoothFunction(double x, double beta, double lambda)
void MatrixTranspose(const double *A, int m, int n, double *OUT)
short MatrixMultiply(const double *A, int m, int n, const double *B, char k, char p, double *OUT)
double RaisedCosine(double in, double th, double lambda)
double SmoothTransition(double x, double beta, double xmin, double lambda)
const double RPY2VectEpsilon
Definition SVD_Internal.h:15
const unsigned long int MaxMatrixDim
Max matrices dimension.
Definition SVD_Internal.h:16
const double SVDEpsilon
Definition SVD_Internal.h:17