필터 지우기
필터 지우기

how can i solve this problem give me a useful answer ASAP

조회 수: 2 (최근 30일)
Adnan
Adnan 2014년 10월 22일
편집: Rick Rosson 2014년 10월 22일
x[n]=-0.75u[n]
h[n]=a.^n.*u[-n-2]
-15<=n<=15 ; a=0.15.

채택된 답변

Rick Rosson
Rick Rosson 2014년 10월 22일
편집: Rick Rosson 2014년 10월 22일
Here's a start:
n = -15:15;
x = zeros(size(n));
x(n>=0) = 0.75;
figure;
stem(n,x);
a = 0.15;
h = zeros(size(n));
h(...) = ...
figure;
stem(n,h);

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by