Azzera filtri
Azzera filtri

Time interval between samples

1 visualizzazione (ultimi 30 giorni)
SCuri
SCuri il 6 Mar 2019
Commentato: Star Strider il 6 Mar 2019
I have a strain data set from the LIGO detectors. It is a [1 x 1 ] struct with 16777216 length, with values like -2.343424e-16.
How to I find the time period between two signal of this data?
I tried using diff() but I didn't get the desired output.
  2 Commenti
SCuri
SCuri il 6 Mar 2019
I hav attached an image of the errorI am getting. The value of ts = 2.4414e-04. I think the error is because of this value. How do I proceed?
Star Strider
Star Strider il 6 Mar 2019
The error indicates that you are using int64 data. You either must use integer int64 operands, as the error indicates, or convert your data to double. You may lose some precision going from int64 to double, since int64 is defined as: [], while double is defined as having 51-bit mantissas. You need to decide if that is acceptable with your data.

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 6 Mar 2019
It would help to know what your data are. Lacking that, and finding the Wikipedia article on LIGO (link), you may have spikes in your data, or other kinds of repeating signals.
If so, your best option is likely the Signal Processing Toolbox findpeaks (link) function. You may need to filter your data first, to get rid of some of the high-frequency noise. If so, and if you need help designing the filter, attach a representative file of your data to your original Question or to a Comment to it.
  2 Commenti
SCuri
SCuri il 6 Mar 2019
Thank you so much! Your advice helped a lot. :)
Star Strider
Star Strider il 6 Mar 2019
As always, my pleasure!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by