05-14-2016 07:09 AM
Hi,
I'm trying to visualize Gibb's phenomenon by adding multiple sine waves. The issue I'm having is that I can't figure out how to add the sine waves created in the loop. I have attached a picture of the basic structure to my project below. I have tried to simply use "add" with a feedback loop but it seems like my knowledge in programming doesn't apply here. Any suggestions is appreciated. Thanks!
0
Solved! Go to Solution.
05-14-2016 07:31 AM - edited 05-14-2016 07:32 AM
Something like this?
1. Make sure you "reset" the waveform generation with each iteration
2. With waveforms, you have to make sure the sampling rate is the same. This can be an issue with the first iteration. So add in a check to just use the first waveform on the first iteration.
05-14-2016 07:46 AM
Thank you very much!