Home
last modified time | relevance | path

Searched refs:makeCirculant (Results 1 – 5 of 5) sorted by relevance

/external/eigen/doc/
DNewExpressionType.dox35 to write a function \c makeCirculant which, given the first column,
38 For simplicity, we restrict the \c makeCirculant function to dense
46 We will present the file implementing the \c makeCirculant function
49 \c Circulant. The \c makeCirculant function will return an object of
52 to the \c makeCirculant function.
66 passed to the \c makeCirculant function. The type used to index the
71 \c makeCirculant function. If this is a dynamic-size vector, then the
123 After all this, the \c makeCirculant function is very simple. It
131 Finally, a short \c main function that shows how the \c makeCirculant
DCustomizingEigen_NullaryExpr.dox22 to write a function \c makeCirculant which, given the first column,
25 For this exercise, the return type of \c makeCirculant will be a CwiseNullaryOp that we need to ins…
33 This little helper structure will help us to implement our \c makeCirculant function as follows:
35 \snippet make_circulant2.cpp makeCirculant
54 This implementation of \c makeCirculant is much simpler than \ref TopicNewExpressionType "defining …
/external/eigen/doc/examples/
Dmake_circulant2.cpp36 makeCirculant(const Eigen::MatrixBase<ArgType>& arg) in makeCirculant() function
49 mat = makeCirculant(vec); in main()
Dmake_circulant.cpp.entry2 Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
Dmake_circulant.cpp.main6 mat = makeCirculant(vec);