Re: Graphing recurrences
- Subject: [mg3315] Re: [mg3223] Graphing recurrences
- From: bennefeld at dkrz.d400.de (Christian Bennefeld)
- Date: 26 Feb 1996 10:46:10 -0600
- Approved: usenet@wri.com
- Distribution: local
- Newsgroups: wri.mathgroup
- Organization: Wolfram Research, Inc.
- Sender: daemon at wri.com
>How do I plot recurrences? For example y(t)=y(t-1)+1, y(0)=0, 1 <= t <= 10. Kinh, try: y[0]:=0; y[t_]:=y[t-1]+1 ListPlot[Table[y[t],{t,1,10,1}]] Regards, Christian