How to plot delta dirac and unit step functions
조회 수: 197 (최근 30일)
이전 댓글 표시
Hey all, I am having trouble trying to plot (via stem) some delta dirac and unit step functions for my Digital Signal Processing class!
The ones in particular I am trying to plot are as follows:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/364588/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/364591/image.png)
Thanks!
댓글 수: 9
Walter Roberson
2020년 9월 24일
편집: Walter Roberson
2020년 9월 24일
I already showed you how to plot the functions. What I posted above was actual code.
Further example of plotting.
t = 1 : 10;
y = randi([0 1], 1, 10);
stem(t, y);
I think you should concentrate on writing functions that implement dirac delta and unit step.
답변 (2개)
Idin Motedayen-Aval
2024년 5월 23일
This question is old, and the comments contain good hints on how to solve it, but I thought it might be instructive to put the code that solves this specific problem.
The code below shows a possible implementation of dirac and unit step functions, and uses them to plot the two functions given.
(The functions dirac and heaviside are from Symbolic Math Toolbox, and will require careful treatment to be used in this context, so I'm not using them below.)
n = -4:1:4;
fn1 = myDirac(n)+2.*myDirac(n-1);
fn2 = (4-n).*myUnit(n).*myUnit(3-n);
stem(n, fn1);
figure
stem(n, fn2);
function y = myDirac(x)
% return 1 only in places where x is zero
% return zero everywhere else
y = zeros(size(x));
y(x==0)=1;
end
function y = myUnit(x)
% return zero for x values less than 0
% return 1 for x >= 0
y = zeros(size(x));
y(x>=0) = 1;
end
댓글 수: 0
Kiran Felix Robert
2020년 11월 4일
Hi Steven,
Refer the documentation of Dirac-delta(Dirac)and unit-step(heaviside) they point to the MATLAB Built-in functions for the unit-step and Dirac-Delta Functions. You can use these Built-in functions to write your required expression and plot using stem.
Kiran Felix Robert
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Chebyshev에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!