フィルターのクリア

Can synchronous Sampling be done by Matlab

1 回表示 (過去 30 日間)
Ijeoma Madu
Ijeoma Madu 2012 年 12 月 11 日
Hi:) I have a tacho signal and a vibration signal and i would like to synchronize both using Matlab´. Any Ideas?
  3 件のコメント
Jan
Jan 2012 年 12 月 12 日
"I have a signal" is not clear also: Do you have feel the signal, while you sit in the car, or do you have two sensors measring this in real-time, or two file with recorded data and the corresponding times, or one file with two columns?
Ijeoma Madu
Ijeoma Madu 2012 年 12 月 12 日
編集済み: Walter Roberson 2012 年 12 月 17 日
Thanks. @Jan they are two files with recorded data from a transmission Test rig.
@Walter I tagged it order tracking because the idea is to obtain the orders instead of frequencies after fft. And this could be achieved directly if the measured signal was sampled at the rate of the rotating shaft. But unfortunatly the measured signal was not sampled synchronously with the tacho so i would like to get both signals synchronized before performing fft. please see link for what i am trying to achieve. your ideas will greatly be appreciated. Thanks

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

採用された回答

Ryan G
Ryan G 2012 年 12 月 12 日
Assuming you have an accurate time related to each signal, you could use the synchronize function with a time series class.
Essentiall you define the data using timeseries:
ts1 = timeseries(data1);
ts2 = timeseries(data2);
And then synchronize:
[ts1 ts2] = synchronize(ts1,ts2,'union');
This may be overly simplistic for what you are trying to do, but you can try it and comment back with what is and is not working more specifically.
  1 件のコメント
Ijeoma Madu
Ijeoma Madu 2012 年 12 月 17 日
Thanks.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by