sigProcLib: Fix complex/real vector flag in Laurent modulator

The modulator vector to be shaped by Laurent C1 pulse is complex,
but was set as real. The error does not affect behaviour because
we only support complex-complex and complex-real calculations;
real-real convolution is not supported. So in this case the data
vector was already assumed to be complex despite the improper
flag setting.

Change-Id: I03afc6a93a01fde7a9a02e4eb9d201d3ee37d21a
This commit is contained in:
Tom Tsou
2017-06-14 17:12:16 -07:00
committed by Tom Tsou
parent d67bd603e9
commit 63eef9faf2

View File

@@ -643,7 +643,6 @@ static signalVector *modulateBurstLaurent(const BitVector &bits)
c0_itr = c0_burst->begin();
c1_burst = new signalVector(burst_len, c1_pulse->size());
c1_burst->isReal(true);
c1_itr = c1_burst->begin();
/* Padded differential tail bits */