필터 지우기
필터 지우기

property of Dirac delta function in matlab

조회 수: 2 (최근 30일)
HADIMARGO
HADIMARGO 2019년 7월 25일
hey guys!
hello
i want to plot the property of Dirac delta function in matlab;
my uncompleted code:
clc
clear all
t=0:0.01:2*pi;
x1=2*sin(t);
subplot(311)
plot(t,x1);grid
x = -1:0.1:1;
y = dirac(x);
idx = y == Inf;
y(idx) = 1;
subplot(312)
stem(x,y);grid
final=x1.*y;
subplot(312)
plot(t,final);grid
result
my final answer:

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by