How do I go about plotting the following function?
1 回表示 (過去 30 日間)
古いコメントを表示
The function I want to plot is x[n] = \delta[n] - \delta[n-a] where a is just a number.
I know about plotting the impulse function on it's own but this doesn't make any sense to me.
Any and all help is appreciated.
回答 (1 件)
John Doe
2019 年 10 月 9 日
編集済み: John Doe
2019 年 10 月 10 日
I've used random numbers.
a = 5
n = [1:1:50]';
delta = 10;
x(n,1) = delta - (delta*(n-a))
plot(x,n)
Alternatively, you could leave n as it is without transposing and plot per the below:
a = 5
n = 1:1:50;
delta = 10;
x(n,1) = delta - (delta*(n-a))
plot(x(:,1),n(1,:))
It doesn't make much odds.
参考
カテゴリ
Help Center および File Exchange で Formatting and Annotation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!