gpt4 book ai didi

c++ - 来自二维数组的特征图

转载 作者:太空狗 更新时间:2023-10-29 21:11:22 26 4
gpt4 key购买 nike

为什么会这样

typedef Matrix<double, N, N, RowMajor> Mat;
cout << Map<Mat>(&m[0][0]) << endl;

但这不是

cout << Map<Matrix<double, N, N, RowMajor>>(&m[0][0]) << endl;

是否可以在一行中完成所有事情?

错误是:

eigen_playground.cpp:16:46: warning: use of right-shift operator ('>>') in template argument will require parentheses in
C++11 [-Wc++11-compat]
cout << Map<Matrix<double, N, N, RowMajor>>(&m[0][0]) << endl;
^
( )
eigen_playground.cpp:16:46: error: invalid operands to binary expression ('int' and 'double *')
cout << Map<Matrix<double, N, N, RowMajor>>(&m[0][0]) << endl;
~~~~~~~~^ ~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:740:1: note:
candidate template ignored: could not match 'basic_istream<type-parameter-0-0, type-parameter-0-1>' against
'Eigen::StorageOptions'
operator>>(basic_istream<_CharT, _Traits>& __is, _CharT* __s)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:789:1: note:
candidate template ignored: could not match 'basic_istream<char, type-parameter-0-0>' against 'Eigen::StorageOptions'
operator>>(basic_istream<char, _Traits>& __is, unsigned char* __s)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:797:1: note:
candidate template ignored: could not match 'basic_istream<char, type-parameter-0-0>' against 'Eigen::StorageOptions'
operator>>(basic_istream<char, _Traits>& __is, signed char* __s)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:804:1: note:
candidate template ignored: could not match 'basic_istream<type-parameter-0-0, type-parameter-0-1>' against
'Eigen::StorageOptions'
operator>>(basic_istream<_CharT, _Traits>& __is, _CharT& __c)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:832:1: note:
candidate template ignored: could not match 'basic_istream<char, type-parameter-0-0>' against 'Eigen::StorageOptions'
operator>>(basic_istream<char, _Traits>& __is, unsigned char& __c)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:840:1: note:
candidate template ignored: could not match 'basic_istream<char, type-parameter-0-0>' against 'Eigen::StorageOptions'
operator>>(basic_istream<char, _Traits>& __is, signed char& __c)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:1506:1: note:
candidate template ignored: could not match 'basic_istream<type-parameter-0-0, type-parameter-0-1>' against
'Eigen::StorageOptions'
operator>>(basic_istream<_CharT, _Traits>& __is,
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/istream:1638:1: note:
candidate template ignored: could not match 'basic_istream<type-parameter-0-0, type-parameter-0-1>' against
'Eigen::StorageOptions'
operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Size>& __x)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/complex:1369:1: note:
candidate template ignored: could not match 'basic_istream<type-parameter-0-1, type-parameter-0-2>' against
'Eigen::StorageOptions'
operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __x)
^
eigen_playground.cpp:16:66: error: expected a type
cout << Map<Matrix<double, N, N, RowMajor>>(&m[0][0]) << endl;
^
1 warning and 2 errors generated.

最佳答案

出现错误的原因是因为在 C++11 之前,两个相邻字符“>>>”被积极解释为 right shift operator .

由于您使用的是早于 C++11 的 C++ 标准,因此只需在这两个字符之间添加一个空格即可。

cout << Map< Matrix<double, N, N, RowMajor> >(&m[0][0]) << endl;
// right here. ^

关于c++ - 来自二维数组的特征图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50780119/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com