𝑥 [𝑛] = 𝑢[𝑛]𝑒^−𝑛 how to plot it

3 次查看(过去 30 天)
Mohammed Alqahtany
Mohammed Alqahtany 2023-10-19
评论: Sam Chak 2023-10-19
𝑥[𝑛] = 𝑢[𝑛]𝑒^−𝑛

回答(1 个)

akshatsood
akshatsood 2023-10-19
编辑:akshatsood 2023-10-19
Hi Mohammed,
I understand that you want to plot the following discrete equation.This can be achieved by leveraging the "stem" function which is used for plotting discrete sequence data.
n = (-20:20); % defining range of n
u_n = (n>=0); % unit step function
tiledlayout(3,1);
nexttile; % u[n]
stem(n,u_n);
nexttile; % e^-n
stem(n,exp(-n));
nexttile; % u[n]*e^-n
stem(n,u_n.*exp(-n));
For more information about the "stem" function, have a look at the following reference
I hope this helps

类别

Help CenterFile Exchange 中查找有关 Chemistry 的更多信息

标签

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by