Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
189376f1eb10ecaca8a0b1ea00eba0e6f995da27
/
.
/
doc
/
examples
/
make_circulant.cpp.entry
blob: f9d2eb8a9599c06bb96ed1df16c93b2945cf39de [
file
] [
log
] [
blame
]
Austin Schuh
189376f
2018-12-20 22:11:15 +1100
[
diff
] [
blame^
]
1
template
<
class
ArgType
>
2
Circulant
<
ArgType
>
makeCirculant
(
const
Eigen
::
MatrixBase
<
ArgType
>&
arg
)
3
{
4
return
Circulant
<
ArgType
>(
arg
.
derived
());
5
}