필터 지우기
필터 지우기

How can I generate a continious signal? Generating a pulse?

조회 수: 1 (최근 30일)
Serhat
Serhat 2013년 3월 16일
Hello,
My problem is to generate a pulse. While x-axis values are between 0 and 1, y-axis is equal to 1 except that x-axis are between 0.5 and 0.75, y is equal to -1.
How can I create a unit step like this?
Thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 16일
편집: Azzi Abdelmalek 2013년 3월 16일
t=0:0.001:1
y=ones(1,numel(t))
y(t>0.5 & t<0.75)=-1
plot(t,y,'r','linewidth',3)
  댓글 수: 2
Serhat
Serhat 2013년 3월 16일
Ooo, thank you so much. What is "numel" doing there exactly?
Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 16일
x=[2 4 6 8]
n=numel(x) % number of elements in x

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by