mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-07 21:51:47 +08:00
Add 1D overloads of operator()
This commit is contained in:
parent
1b5570988b
commit
04397f17e2
@ -84,6 +84,62 @@ operator()(const RowIndicesT (&rowIndices)[RowIndicesN], const ColIndicesT (&col
|
|||||||
(derived(), rowIndices, colIndices);
|
(derived(), rowIndices, colIndices);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Overloads for 1D vectors/arrays
|
||||||
|
|
||||||
|
template<typename Indices>
|
||||||
|
typename internal::enable_if<
|
||||||
|
IsRowMajor && (!(internal::get_compile_time_incr<typename internal::MakeIndexing<Indices>::type>::value==1 || internal::is_integral<Indices>::value)),
|
||||||
|
IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Index>::type,typename internal::MakeIndexing<Indices>::type> >::type
|
||||||
|
operator()(const Indices& indices) EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
|
{
|
||||||
|
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
||||||
|
return IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Index>::type,typename internal::MakeIndexing<Indices>::type>
|
||||||
|
(derived(), internal::make_indexing(0,derived().rows()), internal::make_indexing(indices,derived().cols()));
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename Indices>
|
||||||
|
typename internal::enable_if<
|
||||||
|
(!IsRowMajor) && (!(internal::get_compile_time_incr<typename internal::MakeIndexing<Indices>::type>::value==1 || internal::is_integral<Indices>::value)),
|
||||||
|
IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Indices>::type,typename internal::MakeIndexing<Index>::type> >::type
|
||||||
|
operator()(const Indices& indices) EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
|
{
|
||||||
|
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
||||||
|
return IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Indices>::type,typename internal::MakeIndexing<Index>::type>
|
||||||
|
(derived(), internal::make_indexing(indices,derived().rows()), internal::make_indexing(Index(0),derived().cols()));
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename Indices>
|
||||||
|
typename internal::enable_if<
|
||||||
|
(internal::get_compile_time_incr<typename internal::MakeIndexing<Indices>::type>::value==1) && (!internal::is_integral<Indices>::value),
|
||||||
|
VectorBlock<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,internal::get_compile_time_size<Indices,SizeAtCompileTime>::value> >::type
|
||||||
|
operator()(const Indices& indices) EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
|
{
|
||||||
|
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
||||||
|
typename internal::MakeIndexing<Indices>::type actualIndices = internal::make_indexing(indices,derived().size());
|
||||||
|
return VectorBlock<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,internal::get_compile_time_size<Indices,SizeAtCompileTime>::value>
|
||||||
|
(derived(), internal::first(actualIndices), internal::size(actualIndices));
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename IndicesT, std::size_t IndicesN>
|
||||||
|
typename internal::enable_if<IsRowMajor,
|
||||||
|
IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Index>::type,const IndicesT (&)[IndicesN]> >::type
|
||||||
|
operator()(const IndicesT (&indices)[IndicesN]) EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
|
{
|
||||||
|
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
||||||
|
return IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,typename internal::MakeIndexing<Index>::type,const IndicesT (&)[IndicesN]>
|
||||||
|
(derived(), internal::make_indexing(0,derived().rows()), indices);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename IndicesT, std::size_t IndicesN>
|
||||||
|
typename internal::enable_if<!IsRowMajor,
|
||||||
|
IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,const IndicesT (&)[IndicesN],typename internal::MakeIndexing<Index>::type> >::type
|
||||||
|
operator()(const IndicesT (&indices)[IndicesN]) EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
|
{
|
||||||
|
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
||||||
|
return IndexedView<EIGEN_INDEXED_VIEW_METHOD_CONST Derived,const IndicesT (&)[IndicesN],typename internal::MakeIndexing<Index>::type>
|
||||||
|
(derived(), indices, internal::make_indexing(0,derived().rows()));
|
||||||
|
}
|
||||||
|
|
||||||
#undef EIGEN_INDEXED_VIEW_METHOD_CONST
|
#undef EIGEN_INDEXED_VIEW_METHOD_CONST
|
||||||
#undef EIGEN_INDEXED_VIEW_METHOD_TYPE
|
#undef EIGEN_INDEXED_VIEW_METHOD_TYPE
|
||||||
|
|
||||||
@ -123,11 +179,21 @@ operator()(const RowIndicesT (&rowIndices)[RowIndicesN], const ColIndicesT (&col
|
|||||||
* Otherwise a more general IndexedView<Derived,RowIndices',ColIndices'> object will be returned, after conversion of the inputs
|
* Otherwise a more general IndexedView<Derived,RowIndices',ColIndices'> object will be returned, after conversion of the inputs
|
||||||
* to more suitable types \c RowIndices' and \c ColIndices'.
|
* to more suitable types \c RowIndices' and \c ColIndices'.
|
||||||
*
|
*
|
||||||
* \sa class Block, class IndexedView, DenseBase::block(Index,Index,Index,Index)
|
* For 1D vectors and arrays, you better use the operator()(const Indices&) overload, which behave the same way but taking a single parameter.
|
||||||
|
*
|
||||||
|
* \sa operator()(const Indices&), class Block, class IndexedView, DenseBase::block(Index,Index,Index,Index)
|
||||||
*/
|
*/
|
||||||
template<typename RowIndices, typename ColIndices>
|
template<typename RowIndices, typename ColIndices>
|
||||||
IndexedView_or_Block
|
IndexedView_or_Block
|
||||||
operator()(const RowIndices& rowIndices, const ColIndices& colIndices);
|
operator()(const RowIndices& rowIndices, const ColIndices& colIndices);
|
||||||
|
|
||||||
|
/** This is an overload of operator()(const RowIndices&, const ColIndices&) for 1D vectors or arrays
|
||||||
|
*
|
||||||
|
* \only_for_vectors
|
||||||
|
*/
|
||||||
|
template<typename Indices>
|
||||||
|
IndexedView_or_VectorBlock
|
||||||
|
operator()(const Indices& indices);
|
||||||
|
|
||||||
#endif // EIGEN_PARSED_BY_DOXYGEN
|
#endif // EIGEN_PARSED_BY_DOXYGEN
|
||||||
|
|
||||||
|
@ -33,9 +33,10 @@ IndexPair decode(Index ij) {
|
|||||||
template<typename T>
|
template<typename T>
|
||||||
bool match(const T& xpr, std::string ref, std::string str_xpr = "") {
|
bool match(const T& xpr, std::string ref, std::string str_xpr = "") {
|
||||||
EIGEN_UNUSED_VARIABLE(str_xpr);
|
EIGEN_UNUSED_VARIABLE(str_xpr);
|
||||||
//std::cout << str_xpr << "\n" << xpr << "\n\n";
|
|
||||||
std::stringstream str;
|
std::stringstream str;
|
||||||
str << xpr;
|
str << xpr;
|
||||||
|
if(!(str.str() == ref))
|
||||||
|
std::cout << str_xpr << "\n" << xpr << "\n\n";
|
||||||
return str.str() == ref;
|
return str.str() == ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,15 +56,16 @@ void check_indexed_view()
|
|||||||
|
|
||||||
Index n = 10;
|
Index n = 10;
|
||||||
|
|
||||||
|
ArrayXd a = ArrayXd::LinSpaced(n,0,n-1);
|
||||||
|
Array<double,1,Dynamic> b = a.transpose();
|
||||||
|
|
||||||
ArrayXXi A = ArrayXXi::NullaryExpr(n,n, std::ptr_fun(encode));
|
ArrayXXi A = ArrayXXi::NullaryExpr(n,n, std::ptr_fun(encode));
|
||||||
|
|
||||||
for(Index i=0; i<n; ++i)
|
for(Index i=0; i<n; ++i)
|
||||||
for(Index j=0; j<n; ++j)
|
for(Index j=0; j<n; ++j)
|
||||||
VERIFY( decode(A(i,j)) == IndexPair(i,j) );
|
VERIFY( decode(A(i,j)) == IndexPair(i,j) );
|
||||||
|
|
||||||
ArrayXd eia(10); eia.setRandom();
|
|
||||||
Array4i eii(4); eii << 3, 1, 6, 5;
|
Array4i eii(4); eii << 3, 1, 6, 5;
|
||||||
std::valarray<double> vala(10); Map<ArrayXd>(&vala[0],10) = eia;
|
|
||||||
std::valarray<int> vali(4); Map<ArrayXi>(&vali[0],4) = eii;
|
std::valarray<int> vali(4); Map<ArrayXi>(&vali[0],4) = eii;
|
||||||
std::vector<int> veci(4); Map<ArrayXi>(veci.data(),4) = eii;
|
std::vector<int> veci(4); Map<ArrayXi>(veci.data(),4) = eii;
|
||||||
|
|
||||||
@ -118,6 +120,19 @@ void check_indexed_view()
|
|||||||
"300 301 302 303 304 305 306 307 308 309")
|
"300 301 302 303 304 305 306 307 308 309")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VERIFY( MATCH( a(seqN(3,3),0), "3\n4\n5" ) );
|
||||||
|
VERIFY( MATCH( a(seq(3,5)), "3\n4\n5" ) );
|
||||||
|
VERIFY( MATCH( a(seqN(3,3,1)), "3\n4\n5" ) );
|
||||||
|
VERIFY( MATCH( a(seqN(5,3,-1)), "5\n4\n3" ) );
|
||||||
|
|
||||||
|
VERIFY( MATCH( b(0,seqN(3,3)), "3 4 5" ) );
|
||||||
|
VERIFY( MATCH( b(seq(3,5)), "3 4 5" ) );
|
||||||
|
VERIFY( MATCH( b(seqN(3,3,1)), "3 4 5" ) );
|
||||||
|
VERIFY( MATCH( b(seqN(5,3,-1)), "5 4 3" ) );
|
||||||
|
|
||||||
|
VERIFY( MATCH( b(all), "0 1 2 3 4 5 6 7 8 9" ) );
|
||||||
|
VERIFY( MATCH( b(eii), "3 1 6 5" ) );
|
||||||
|
|
||||||
Array44i B;
|
Array44i B;
|
||||||
B.setRandom();
|
B.setRandom();
|
||||||
VERIFY( (A(seqN(2,5), 5)).ColsAtCompileTime == 1);
|
VERIFY( (A(seqN(2,5), 5)).ColsAtCompileTime == 1);
|
||||||
@ -180,6 +195,11 @@ void check_indexed_view()
|
|||||||
VERIFY( is_same_type(cA.block(0,0,2,2), cA(seqN(0,2),seq(0,1))) );
|
VERIFY( is_same_type(cA.block(0,0,2,2), cA(seqN(0,2),seq(0,1))) );
|
||||||
VERIFY( is_same_type(cA.middleRows(2,4), cA(seqN(2,4),all)) );
|
VERIFY( is_same_type(cA.middleRows(2,4), cA(seqN(2,4),all)) );
|
||||||
VERIFY( is_same_type(cA.middleCols(2,4), cA(all,seqN(2,4))) );
|
VERIFY( is_same_type(cA.middleCols(2,4), cA(all,seqN(2,4))) );
|
||||||
|
|
||||||
|
VERIFY( is_same_type(a.head(4), a(seq(0,3))) );
|
||||||
|
VERIFY( is_same_type(a.tail(4), a(seqN(last-3,4))) );
|
||||||
|
VERIFY( is_same_type(a.tail(4), a(seq(end-4,last))) );
|
||||||
|
VERIFY( is_same_type(a.segment<4>(3), a(seqN(3,fix<4>))) );
|
||||||
}
|
}
|
||||||
|
|
||||||
ArrayXXi A1=A, A2 = ArrayXXi::Random(4,4);
|
ArrayXXi A1=A, A2 = ArrayXXi::Random(4,4);
|
||||||
@ -203,6 +223,12 @@ void check_indexed_view()
|
|||||||
|
|
||||||
VERIFY_IS_EQUAL( A({1,3,5},{3, 1, 6, 5}).RowsAtCompileTime, 3 );
|
VERIFY_IS_EQUAL( A({1,3,5},{3, 1, 6, 5}).RowsAtCompileTime, 3 );
|
||||||
VERIFY_IS_EQUAL( A({1,3,5},{3, 1, 6, 5}).ColsAtCompileTime, 4 );
|
VERIFY_IS_EQUAL( A({1,3,5},{3, 1, 6, 5}).ColsAtCompileTime, 4 );
|
||||||
|
|
||||||
|
VERIFY_IS_APPROX( a({3, 1, 6, 5}), a(std::array<int,4>{{3, 1, 6, 5}}) );
|
||||||
|
VERIFY_IS_EQUAL( a({1,3,5}).SizeAtCompileTime, 3 );
|
||||||
|
|
||||||
|
VERIFY_IS_APPROX( b({3, 1, 6, 5}), b(std::array<int,4>{{3, 1, 6, 5}}) );
|
||||||
|
VERIFY_IS_EQUAL( b({1,3,5}).SizeAtCompileTime, 3 );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user