- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看来我在这里做的事情非常错误。你能帮助我吗?目的是将 inner_product 用于复杂 vector 。
#include<iostream>
#include<vector>
#include <numeric>
#include <complex>
using namespace std;
template<class T>
complex< T > complex_prod(complex< T > a, complex< T > b)
{
return conj<T>(a)*b;
}
template<class T>
complex< T > add_c(complex< T > a, complex< T > b)
{
return a+b;
}
int main()
{
complex<double> c1(1.,3.);
complex<double> c2(2.,4.);
vector<complex<double> > C1(3,c1);
vector<complex<double> > C2(3,c2);
cout<<inner_product(C1.begin(),C2.end(),C2.begin(),0.,add_c<double>,complex_prod<double>) <<endl;
return 0;
}
我不明白为什么会出现转换问题,一切似乎都已定义,迭代应该没有问题。
最佳答案
问题是 inner_product
需要知道初始值的类型,所以你需要传递给它一个 std::complex
而不是 0.
:
inner_product(C1.begin(),C2.end(),C2.begin(),std::complex<double>(0.,0.),add_c<double>,complex_prod<double>);
或者简单地说,
inner_product(C1.begin(),C2.end(),C2.begin(),std::complex<double>(),add_c<double>,complex_prod<double>);
尽管 std::complex<double>
可以从单个数字类型隐式构造
std::complex<double> c = 2.*4.*300;
inner_product
模板看起来像
template<
class InputIterator1,
class InputIteratorr2,
class T,
class BinaryOperation1,
class BinaryOperation2
> T inner_product( InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, T value,
BinaryOperation1 op1,
BinaryOperation2 op2 );
因此 value
有一个模板参数.所以编译器无法知道你的意思 std::complex<double>
在这里,它只是解释 0.
作为double
.
关于c++ - inner_product 和复 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10565755/
据称内联 std::inner_product() 不会内联 gcc 编译器 inline T inner_product(T1 first1, T1 last1, T2 first2, T ini
我想出了我自己的小类,叫做 TinyVector。现在我正在尝试在其上使用 std::inner_product。但我无法让它工作,我不明白为什么这不起作用。我正在使用 Visual Studio 2
看来我在这里做的事情非常错误。你能帮助我吗?目的是将 inner_product 用于复杂 vector 。 #include #include #include #include using n
考虑以下场景: std::vector a {1, 2, 3}; std::vector b {1, 2, 3, 4}; auto it = b.begin(); auto res = std::in
在数字滤波 C++ 应用程序中,我使用 std::inner_product (使用 std::vector 和 std::deque )为每个数据样本计算滤波器系数和输入数据之间的点积。在分析我的应
我知道如果您处理两个不同大小的数组,std::inner_product 算法会出现问题。是否有另一种标准库算法可以处理不同大小的数组,例如通过自动使用两个数组大小中较小的一个? 最佳答案 实现起来并
这是我天真的点积实现: float simple_dot(int N, float *A, float *B) { float dot = 0; for(int i = 0; i <
下面的 C++ 程序应该返回一个严格的正值。但是,它返回 0。 会发生什么?我怀疑是 int-double 转换,但我不知道为什么以及如何。 #include #include #include
我正在尝试创建一个函数来计算标准偏差。 我尝试使用 std::inner_product和用于内部产品 op1 和 op2 的 lambda 表达式来修改 std::inner_product 的操作
以下代码: $ cat test02.cpp #include #include #include #include #include struct myadd : public s
是否可以将 C++ 中的 std::inner_product() 与 omp.h 库并行化?不幸的是,我不能使用在较新版本的 gcc 中可用的 __gnu_parallel::inner_produ
我无法理解如何使用 inner_product结合 std::vector和一个 std::vector> .给定,例如 和 ,> , 我想要 inner_product生产 2* + 3* = +
我想做这样的事情: vector v; v.push_back(0); v.push_back(1); v .transform([](auto i) { return i + 2; })
我想为一个奇怪的问题寻求帮助。对于从网上获得的关于矩阵的代码,我可以在 g++ 上编译和运行,但无法在 VC++ 2008 上构建。vc++ 的构建错误是 ------ Build started:
我对 std::inner_product() 与手动点积计算相比如何执行很感兴趣,所以我做了一个测试。 std::inner_product() 比手动实现快 4 倍。我觉得这很奇怪,因为没有那么多
今天,我想分享一些在尝试实现这个简单操作时让我大吃一惊的事情: 我发现了执行相同操作的不同方法: 通过使用 std::inner_product。 实现谓词并使用 std::accumulate 函数
我是一名优秀的程序员,十分优秀!