generating aperodic impulse train or triangular pulse or rectangular pulse

조회 수: 7 (최근 30일)
Hello all,
I want to generate aperodic signal of type impulse train or triangular pulse train or rectangular pulses train. i.e. time period b/w samples should vary for every 2 samples. I want to find frequency content from that signal by using FFT. I am new to matlab coding. Could anyone plz explain me how to generate the signal... Rest FFT and signal analysis i can do.
Thanks in advance.
  댓글 수: 3
Rick Rosson
Rick Rosson 2014년 8월 23일
Do you have the Signal Processing Toolbox?
LAKSHMAN
LAKSHMAN 2014년 8월 25일
yes i have.. but when i searched for any wave it is showing only periodic signals..

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

채택된 답변

Image Analyst
Image Analyst 2014년 8월 26일
Attached is my triangle wave demo. Feel free to adapt it as needed.

추가 답변 (2개)

Rick Rosson
Rick Rosson 2014년 8월 23일
doc rectpuls
doc tripuls
doc pulstran
  댓글 수: 3
LAKSHMAN
LAKSHMAN 2014년 8월 26일
I have studied these docs.. Understood more compared to previous.. Thank you Rick..

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


W. Owen Brimijoin
W. Owen Brimijoin 2014년 8월 25일
It's a bit hard to know exactly what parameters you are after, but if all you are doing is making a click train with randomly chosen interstimulus intervals (ISI), then you may be able to get there by creating a vector with randomly chosen integers drawn uniformly from a range.
isi_range = [10 100]; %range from smallest to largest isi (in samples)
num_clicks = 100; %number of clicks you want
%figure out when your clicks are:
click_times = cumsum(randi(isi_range,num_clicks,1));
%set an empty variable to 1 at those points:
signal(click_times) = 1;

카테고리

Help CenterFile Exchange에서 Parametric Spectral Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by