I think the original problem (causing the compiler error) is this:
EventStream<complex<Lambda>> evstrTrain( ...
C++ compilers can't distinguish this from the right-shift operator. You need to have a space between them:
EventStream<complex<Lambda> > evstrTrain( ...
Hope this helps.
Reputation Points: 1140
Solved Threads: 229
Postaholic
Offline 2,039 posts
since Oct 2007