04-15-2017 03:10 PM
Thanks for the idea to negating the signal..
can you explain more about subtract A-B in the time domain? maybe i can use it as alternative..
04-16-2017 06:27 AM
Just use a SUBTRACT node.
if you wire an array (A) into the top terminal, and an array (B) into the bottom terminal, you'll get an array (A-B) from the output terminal.
i.e., it will do one subtraction for each element.
Out[0] = A[0] - B[0]
Out[1] = A[1] - B[1]
Out[2] = A[2] - B[2]
etc.
Blog for (mostly LabVIEW) programmers: Tips And Tricks
04-16-2017 08:22 AM
i tried to negating the signal (by multiply it with -1) and performing fft mag-phase, but nothing came up.. Do you have any idea why?
actually i need the shifted phase and frequency data to forming a new signal for controlling motor DC speed.. have any idea what should i do?