need data about tach signal?

조회 수: 10 (최근 30일)
LAKSHMAN
LAKSHMAN 2014년 8월 11일
답변: Xiaoxing Wang 2024년 9월 29일
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..

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Xiaoxing Wang
Xiaoxing Wang 2024년 9월 29일
You can also get a tacho signal like this
fs = 1e3; %* sampling frequency
fr = 5; %* repetition frequency
t = 0:1/fs:1;
pulse = zeros(length(t),1);
idx = (fs/fr):(fs/fr):length(t);
idx = round(idx);
pulse(idx) = 1;

카테고리

Help CenterFile Exchange에서 Switches and Breakers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by