Hi all, I have a waveform representing an output noise spectrum (taken with VN ()), and from this I want to get a waveform of the spectrum with added replica as caused by sampling, to reproduce the effect of aliasing. I'm working in SKILL/OCEAN. What's the best function or approach for that? I am trying using these step to compute each replica 1) flip() to get the negative frequency 2) concatenate the flipped version with the original spectrum. To get the complete baseband spectrum 2) rshift() to the sampling frequency to get a replica 3) finally clip() to the frequencies I'm interested in and plot and integrate to get rms value. However I do not know how to perform step 2). How can I concatenate two waveforms? Using a simple sum: spectrum + flip(spectrum) does not work as I expected (seems to sum the value with same x-vector index, not with the same x-vector value). Thanks for any suggestion, Marco