forked from sammy-tri/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradient.h
33 lines (27 loc) · 975 Bytes
/
gradient.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** @file
Utilities for arithmetic on gradients. */
#pragma once
#include <Eigen/Dense>
namespace drake {
namespace math {
/** Recursively defined template specifying a matrix type of the correct size
for a gradient of a matrix function with respect to `nq` variables, of any
order. */
template <typename Derived, int nq, int derivative_order = 1>
struct Gradient {
typedef typename Eigen::Matrix<
typename Derived::Scalar,
((Derived::SizeAtCompileTime == Eigen::Dynamic || nq == Eigen::Dynamic)
? Eigen::Dynamic
: Gradient<Derived, nq,
derivative_order - 1>::type::SizeAtCompileTime),
nq> type;
};
/** Base case for recursively defined gradient template. */
template <typename Derived, int nq>
struct Gradient<Derived, nq, 1> {
typedef typename Eigen::Matrix<typename Derived::Scalar,
Derived::SizeAtCompileTime, nq> type;
};
} // namespace math
} // namespace drake