Re: [Discuss-gnuradio] Using Eigen C++ template library in GNURADIO

2017-03-09 Thread Sebastian Mueller
Hello Nasi, can you please explain what you are trying to do? From the little information that you provide I can say: The type VectorXcf is AFAIK neither defined in Eigen nor in GNU Radio, so how should the compiler know what VectorXcf means? I think you might have forgotten to define the type *b

[Discuss-gnuradio] Using Eigen C++ template library in GNURADIO

2017-03-07 Thread Nasi
Dear members, does anyone know how to useĀ Eigen C++ template library in GNURADIO? my OS is Ubuntu 16.04 lts. gnuradio version 3.7.10, I can use it separately as c++ library by adding these lines: #include #include #include ... VectorXcf fftshiftXcf(VectorXcf x, int NFFT); ... //