フィルターのクリア

Time interval between samples

1 回表示 (過去 30 日間)
SCuri
SCuri 2019 年 3 月 6 日
コメント済み: Star Strider 2019 年 3 月 6 日
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 件のコメント
SCuri
SCuri 2019 年 3 月 6 日
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 2019 年 3 月 6 日
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.

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2019 年 3 月 6 日
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 件のコメント
SCuri
SCuri 2019 年 3 月 6 日
Thank you so much! Your advice helped a lot. :)
Star Strider
Star Strider 2019 年 3 月 6 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by