‎08-29-2017 04:10 AM
Hi,
I try to derive and integral my signal (array 1D of double) but i can't to calculate the dt in each case and which gives me as a result this.
this is my diagrame .
derivative -->
Integral -->
How i can to do to adjust correctly the dt for this fuction.
thank you .
Solved! Go to Solution.
‎08-29-2017 04:20 AM
Hi Sarah,
from your images it seems you try to calculate dt from the difference of the first two samples.
Why do you think you get dt when subtracting two sample values? THis would give you just dx…
You should know dt from your signal source. It would help when you would be using the waveform datatype…
‎08-29-2017 04:25 AM
Yes,
But this is juste an example for this Sinus how i can derivate Random signal for example ?
Is there a method to extract the dt for any signal??
‎08-29-2017 04:37 AM
Hi Sarah,
Is there a method to extract the dt for any signal?
Yes, sure: you need to know the signal source and the sampling rate used at the source!
- When all you got are the sample values "x" then you lost the timing information. Ask the person, who created those signals, for the sample rate.
- Use the waveform datatype in your own VIs as it enforces the use of a proper dt information.
‎08-29-2017 04:51 AM
HI GerdW Thank you for your answer.
I understand what you mean, but If we don't know the source, we have just a data signal in array , can not be derived ?
‎08-29-2017 04:58 AM
‎08-29-2017 05:14 AM
What is the dt of this source for example??
Thank youu.
‎08-29-2017 05:32 AM - edited ‎08-29-2017 05:33 AM
Hi Sarah,
the PtByPt function expects a "time" value at its input - did you read the help for this function?
When you know this time (aka "t") value you can easily calculate dt from it…
(As you should call this function in a loop it would be a good idea to check the loop iteration time. ;))