stem-plot difference of equations
古いコメントを表示
Here is the question
Find numerically and stem-plot the solutions of the difference equations [1<=k<=10]
a. y(k+1) - 3*k*y(k) = 0
b. y(y+1) - k*y(k) = 1
assume that y(1)=1
not sure if i am looking at this properly but here is what i was thinking. a and b do not have the same y values after 1 since in order to get 0 for the first one y(2) needs to be 3 while for equation b y(2) needs to be 2. So solve them differently and then plot? i am not sure which would be my x and y for stem plot as well. This looks simple but its confusing me not sure if am over thinking.
Thank you for your time
3 件のコメント
Azzi Abdelmalek
2013 年 12 月 16 日
Your question is not clear. Do you want to solve two different equations or one system of two equations?
Tony
2013 年 12 月 16 日
Walter Roberson
2013 年 12 月 24 日
Are you sure that (b) should have y(y+1) on the left side, and not y(k+1) ??
採用された回答
その他の回答 (1 件)
Youssef Khmou
2013 年 12 月 24 日
Tony, try this iterative method :
y1=zeros(10,1);
y2=zeros(10,1);
y1(1)=1;y2(1)=1; % initial conditions
for t=1:9
y1(t+1)=3*t*y1(t);
y2(t+1)=1+t*y2(t);
end
k=1:10;
figure, stem(k,y1), hold on,stem(k,y2,'r')
カテゴリ
ヘルプ センター および File Exchange で Plot Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!