Hello i am new to C++ and im trying to make a program that takes two complex numbers, sumarizes them and return the sum.
What i am planning to do is sending two tuples into a function and returning one tuple.
typedef tuple<float, float> complex_tuple;
complex_tuple a_tuple(a, b);
complex_tuple b_tuple(c, d);
cout << sum(a_tuple, b_tuple);
and this is my function:
tuple<float,float> sum(tuple<float, float>a, tuple<float, float>b){
float a_real= get<0>(a);
float a_imag= get<1>(a);
float b_real= get<0>(b);
float b_imag= get<1>(b);
return tuple<float, float>(a_real+b_real, a_imag+b_imag);
}
the error i get is:
0.cc:28:31: Error: no match for "operator<<" in "std::cout << sum(std::tuple<float, float>, std::tuple<float, float>)(b_tuple)"
What am i doing wrong?
