1#ifndef COMPLEX_TENSOR_DEFINED
2#define COMPLEX_TENSOR_DEFINED
30void toComplexTensor(Tensor<double> &r, Tensor<double> &i, Tensor<complex> &c);
Definition Algorithm.hpp:10
void toComplexTensor(Tensor< double > &r, Tensor< double > &i, Tensor< complex > &c)
Composes a tensor of complex elements containing of the given tensors of real and imaginary parts....
Definition ComplexTensor.cxx:54
void conjugate(Tensor< double > &c)
Definition ComplexTensor.cxx:96
void fromComplexTensor(Tensor< complex > &c, Tensor< double > &r, Tensor< double > &i)
Decomposes the tensor of complex elements into two tensors containing the real and imaginary parts,...
Definition ComplexTensor.cxx:28