Hi All.
I have few questions, regarding EVE simulator:
- Once I provide to EVE negative sinusoidal signal
input_signal = sine();
I got a lot of noise and I did not get proper FFT result (have a look at attached files for positive and negative signals).
- I have different amplitude as well.
- The scaling factors are zeros and I generate the signal with next Matlab code:
bits = 13;
Fs = 512;
noise_ratio = 0;
sine = dsp.SineWave();
sine.Amplitude = power(2,bits);
sine.Frequency = -11;
sine.SamplesPerFrame = Fs;
sine.SampleRate = Fs;
sine.PhaseOffset = 0*pi;
sine.Method = 'Trigonometric function';
sine.ComplexOutput = true;
sine.OutputDataType = 'single';
Additional information:
When i try to debugging, i found, that reference function:
"vcop_fft_npt_32inter_mixed_radix_cn"
found proper frequencies.
Please advise,
Regards,
Sergey.