discrete time signal, i am not able to generate a function for the following question
1 次查看(过去 30 天)
显示 更早的评论
clc;
clear all;
close all;
n= [1 7 5 6 4 5];
N1 = input('enter value for N1 :');
N2 = input('enter value for N2 :');
alpha = input('enter the value of alpha:');
figure(1)
x= alpha ^ (N1:n:N2);
stem(x)
xlabel('time')
ylabel('amplitude')
title('plot-1')
回答(1 个)
Paul Hoffrichter
2021-5-27
Try this to fix the error:
N1 = 0; N2 = 8; alpha = 0.8;
figure(1)
x= alpha .^ (N1:N2);
plot(x)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numerical Integration and Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!