how to creat this rectangular signal?

조회 수: 1 (최근 30일)
benghenia aek
benghenia aek 2019년 1월 27일
댓글: benghenia aek 2019년 1월 29일
X=[1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0]
Y=[1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1]
X and Y these are rectangular signal vectors
I would like a transformation x (t) to y (t)?48099895_1457061161094299_7270906206472896512_n.png
  댓글 수: 6
benghenia aek
benghenia aek 2019년 1월 28일
it does not matter
I want a way to help me
Walter Roberson
Walter Roberson 2019년 1월 28일
f = @(X) Y;

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

채택된 답변

Jan
Jan 2019년 1월 28일
x = [1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0];
y = ones(size(x));
y(strfind(x, [0,1])) = -1;
y = cumprod(y);
y(y == -1) = 0;
  댓글 수: 1
benghenia aek
benghenia aek 2019년 1월 29일
thank you very much for your help

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by