フィルターのクリア

need data about tach signal?

3 ビュー (過去 30 日間)
LAKSHMAN
LAKSHMAN 2014 年 8 月 11 日
コメント済み: LAKSHMAN 2014 年 8 月 18 日
greetings !! I want to know about tach signal(like signal from tachometer) in MATLAB and its generation in matlab like attached image(Might be aperiodic).. And i want to add some Gaussian noise to that signal to find frequency b/w peeks.
I tried using "pulse train" but not getting as i like..

採用された回答

dpb
dpb 2014 年 8 月 11 日
Starting point could be something (from the pulstran example)...
>> t = 0 : 1/1e3 : 1; % 1 kHz sample freq for 1 sec
d = 0 : 1/5 : 1; % 5 Hz repetition freq
y = pulstran(t,d,@tripuls,0.01);
plot(t,y)
>> xlim([-0.05 1.05])
You can then apply a windowing function of length(y) to desired shape to modify amplitude and add noise as desired. Fix up frequencies, etc., as desired, obviously; I just fiddled with the example parameters slightly to show more pulses over the same frequency as the example and with a symmetric pulse.
  1 件のコメント
LAKSHMAN
LAKSHMAN 2014 年 8 月 18 日
Thanks for sharing ur knowledge..

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWaveform Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by