How to plot x(n) for many values of n?
23 ビュー (過去 30 日間)
古いコメントを表示
How to plot 𝑥(𝑛) = 𝛼𝑛 𝑥(0) for n=1-30 and x(0)=100?? I have tried this code, but it is repeating it's value again and again... What I am missing?
alpha = 2
x0 = 100; % Initial conditions
for n = 1:30
x(n) = (alpha^n)*(x0)
end
disp(x(n))
0 件のコメント
採用された回答
madhan ravi
2020 年 6 月 6 日
編集済み: madhan ravi
2020 年 6 月 6 日
Shorter code eliminating loop:
Alpha = 2
x0 = 100; % Initial conditions
n = 1:30;
x = Alpha.^n*x0;
plot(n,x)
Note: You were doing it correctly all you had to use was disp(x)
9 件のコメント
madhan ravi
2020 年 6 月 6 日
編集済み: madhan ravi
2020 年 6 月 6 日
Man... what do you want to do? Did you read https://www.mathworks.com/matlabcentral/answers/543416-how-to-plot-x-n-for-many-values-of-n#comment_886145 ?
その他の回答 (1 件)
David Hill
2020 年 6 月 6 日
alpha = 2
x0 = 100; % Initial conditions
for n = 1:30
x(n) = (alpha^n)*(x0)
end
disp(x);
plot(1:30,x);
3 件のコメント
David Hill
2020 年 6 月 6 日
x has only 30 values...use ; to suppress
alpha = 2;
x0 = 100; % Initial conditions
for n = 1:30
x(n) = (alpha^n)*(x0);
end
disp(x);
plot(1:30,x);
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!